/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Water/Blue Theme */
    --color-primary-dark: #003049;
    /* Deep Blue */
    --color-secondary-dark: #0077B6;
    /* Medium Blue */
    --color-slate-700: #003566;
    --color-slate-400: #94A3B8;
    --color-slate-100: #E0Fbfc;

    --color-accent: #00B4D8;
    /* Light/Bright Water Blue */
    --color-accent-hover: #0096C7;
    --color-accent-light: rgba(0, 180, 216, 0.15);
    --color-accent-rgb: 0, 180, 216;

    --color-sky-500: #00B4D8;
    --color-sky-100: rgba(0, 180, 216, 0.1);

    --color-success: #10b981;
    --color-error: #ef4444;

    /* Theme colors - Adjusted for new palette */
    --color-blue-primary: #0077B6;
    --color-blue-secondary: #003049;

    /* Neutral Colors */
    --bg-white: #ffffff;
    --bg-light: #F0F8FF;
    --text-dark: #001D3D;
    --text-muted: #334155;
    --text-light: #F8FAFC;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 15px 25px -10px rgba(15, 23, 42, 0.06);
    --shadow-accent: 0 10px 20px -5px rgba(0, 119, 255, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Container Width */
    --container-width: 1240px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    background-color: var(--color-slate-100);
    color: var(--text-muted);
    text-align: center;
    line-height: 2;
    padding: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-slate-400);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Reusable Components */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background: var(--color-primary-dark);
    color: var(--bg-white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--bg-white);
}

/* Section Header */
.section-header {
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 16px;
}

.section-tagline.tag-light {
    color: var(--color-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}

.bg-dark .section-title {
    color: var(--bg-white);
}

.section-underline {
    width: 80px;
    height: 3px;
    background: var(--color-accent);
    margin: 24px auto 0;
    border-radius: var(--radius-full);
}

.section-underline.align-left {
    margin-left: 0;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-top: 24px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-primary-dark);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.gradient-text {
    color: var(--color-accent);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--color-blue-primary);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-primary-dark);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 24px;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    width: 14px;
    height: 14px;
    color: var(--color-primary-dark);
}

.top-bar-phone {
    color: var(--color-primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.top-bar-phone:hover {
    background: var(--color-primary-dark);
    color: var(--bg-white);
    border-color: var(--color-primary-dark);
}

.top-bar-phone i {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 18px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-slate-100);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, #44ACFF 100%);
    color: var(--bg-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: var(--shadow-accent);
    animation: pulseGlow 3s infinite alternate;
}

.logo-icon i {
    width: 20px;
    height: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-slate-700);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--color-primary-dark);
    color: var(--bg-white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.btn-nav:hover {
    background: var(--color-accent);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-nav::after {
    display: none;
}

/* Hamburger Menu button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 101;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-accent);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-accent);
}

/* ==========================================================================
   BUS SECTION (BRANDING)
   ========================================================================== */
.section-bus {
    padding: 80px 0;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bus-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

/* Soft glowing background behind the banner */
.bus-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-blue-primary) 100%);
    filter: blur(60px);
    opacity: 0.25;
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition-slow);
}

.bus-wrapper:hover .bus-glow {
    opacity: 0.4;
    filter: blur(80px);
    transform: scale(1.05);
}

/* Elegant card container */
.bus-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 30px 60px -15px rgba(0, 48, 73, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    overflow: hidden;
}

.bus-wrapper:hover .bus-card {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(0, 48, 73, 0.28);
    border-color: rgba(0, 180, 216, 0.3);
}

.bus-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 8px);
    transition: var(--transition-normal);
    padding: 0;
    background-color: transparent;
}

.bus-wrapper:hover .bus-card-img {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .section-bus {
        padding: 50px 0;
    }
    .bus-card {
        padding: 8px;
        border-radius: var(--radius-md);
    }
    .bus-card-img {
        border-radius: calc(var(--radius-md) - 4px);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: radial-gradient(circle at 80% 20%, var(--color-blue-secondary) 0%, var(--color-blue-primary) 100%);
    position: relative;
    padding: 140px 0 100px;
    color: var(--color-primary-dark);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.hero-badge i {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section .gradient-text {
    color: var(--bg-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--bg-light);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-section .btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 10px 20px -5px rgba(0, 180, 216, 0.3);
}

.hero-section .btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--bg-white);
    box-shadow: 0 12px 24px -5px rgba(0, 180, 216, 0.45);
}

.hero-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-section .btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-slate-100);
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 23, 42, 0.15);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    transition: var(--transition-slow);
    border: 4px solid rgba(255, 255, 255, 0.35);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    width: 18px;
    height: 18px;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.badge-desc {
    font-size: 0.8rem;
    color: var(--color-slate-700);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding-bottom: 20px;
}

.main-about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 1px solid var(--color-slate-100);
}

.experience-card {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-secondary) 100%);
    color: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 20px;
    height: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--color-slate-100);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--transition-normal);
}

.service-icon-alert {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--transition-normal);
    animation: phonePulse 2s infinite;
}

.service-card:hover .service-icon {
    background: var(--color-accent);
    color: var(--bg-white);
    transform: rotate(360deg);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--color-slate-100);
    padding-top: 20px;
}

.service-bullets li {
    font-size: 0.9rem;
    color: var(--color-slate-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-bullets li i {
    width: 16px;
    height: 16px;
    color: var(--color-success);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-slate-100);
    background: var(--bg-white);
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.filter-btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-accent);
    color: var(--bg-white);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    opacity: 1;
    transform: scale(1);
}

/* For filtering animation in JS */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: scaleIn 0.4s ease forwards;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-slate-100);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(68, 172, 255, 0.9) 0%, rgba(137, 212, 255, 0.5) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gallery-info {
    display: none;
}

.gallery-cat {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-hover);
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 4px;
}

/* Hover effects */
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    width: 20px;
    height: 20px;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 6px;
}

.why-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Stats Card Grid */
.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--color-primary-dark);
    transform: translateY(-6px);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.stat-card-icon i {
    width: 32px;
    height: 32px;
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--color-slate-700);
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--color-slate-100);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    width: 18px;
    height: 18px;
}

.star-filled {
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--color-slate-700);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(249, 115, 22, 0.15);
    position: absolute;
    line-height: 0;
}

.testimonial-quote::before {
    top: 10px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -15px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-sky-100);
    color: var(--color-sky-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    width: 20px;
    height: 20px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.author-city {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-slate-100);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.slider-control-btn:hover {
    background: var(--color-accent);
    color: var(--bg-white);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-slate-400);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    width: 24px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-single-container {
    max-width: 650px;
    margin: 0 auto;
}

/* Info Panel */
.contact-info-panel {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-secondary) 100%);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-subtitle {
    color: var(--color-slate-100);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item>div {
    min-width: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    width: 20px;
    height: 20px;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-100);
    margin-bottom: 4px;
}

.info-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bg-white);
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
}

.info-link:hover {
    color: var(--color-accent);
}

.info-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    display: block;
}

.info-value {
    font-size: 1.05rem;
    color: var(--bg-white);
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Map Card */
.map-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto;
}

.map-icon {
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.map-icon i {
    width: 24px;
    height: 24px;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-white);
}

.map-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Contact Map */
.contact-map {
    margin-top: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.contact-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0, 180, 216, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-map:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 180, 216, 0.4);
    transform: translateY(-8px) scale(1.01);
    border-color: var(--color-accent);
}

.contact-map:hover::after {
    opacity: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.2);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0);
}

/* Form Panel */
.contact-form-panel {
    background: var(--bg-white);
    border: 1px solid var(--color-slate-100);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.form-group label .required {
    color: var(--color-error);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--color-slate-400);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: var(--transition-fast);
}

.textarea-icon {
    top: 16px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--color-slate-100);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    color: var(--color-primary-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.15);
}

.input-wrapper input:focus+.input-icon,
.input-wrapper select:focus+.input-icon,
.input-wrapper textarea:focus+.input-icon {
    color: var(--color-accent);
}

.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2364748b%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.text-area-wrapper textarea {
    resize: none;
}

/* Form validation error */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--color-error);
    background-color: rgba(239, 68, 68, 0.02);
}

.form-group.invalid .input-icon {
    color: var(--color-error);
}

.error-msg {
    color: var(--color-error);
    font-size: 0.8rem;
    font-weight: 600;
    display: none;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Alert notifications */
.form-alert {
    display: none;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    animation: scaleIn 0.3s ease;
}

.form-alert.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.form-alert.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.form-alert i {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: linear-gradient(135deg, var(--color-blue-primary) 0%, var(--color-blue-secondary) 100%);
    color: var(--bg-white);
    padding: 80px 0 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-footer .logo-title {
    color: var(--bg-white);
}

.logo-footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.text-gray {
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-link i,
.social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-list a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-list a i {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.designer-text {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.97);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    transform: rotate(90deg);
}

.lightbox-close i {
    width: 22px;
    height: 22px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.lightbox-nav i {
    width: 24px;
    height: 24px;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease forwards;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
    text-align: center;
    margin-top: 24px;
    color: var(--bg-white);
}

.lightbox-category {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 6px;
}

/* ==========================================================================
   SCROLL AND ENTRY ANIMATIONS
   ========================================================================== */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-anim.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-anim.fade-left {
    transform: translateX(-40px);
}

.scroll-anim.fade-left.animate {
    transform: translateX(0);
}

.scroll-anim.fade-right {
    transform: translateX(40px);
}

.scroll-anim.fade-right.animate {
    transform: translateX(0);
}

/* Delay helpers for animations */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Keyframe Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 119, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 119, 255, 0.7);
    }
}

@keyframes phonePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-card {
        transform: none;
    }

    .hero-image-card:hover {
        transform: scale(1.02);
    }

    .hero-img {
        height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .main-about-img {
        height: 400px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 70px 0;
    }

    .top-bar {
        display: none;
        /* Hide top bar on tablet/mobile for space */
    }

    .header {
        padding: 14px 0;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-title {
        font-size: 1.15rem;
    }

    /* Responsive Hamburger Navigation */
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
        z-index: 100;
        transition: var(--transition-normal);
        padding: 100px 40px 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    .btn-nav {
        text-align: center;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-quote::before,
    .testimonial-quote::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-panel {
        padding: 30px;
    }

    .contact-info-panel {
        padding: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-services {
        align-items: center;
        text-align: center;
    }

    .footer-brand .logo-footer {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-image-badge {
        padding: 10px 14px;
        gap: 10px;
    }

    .main-about-img {
        height: 320px;
    }

    .experience-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto 0;
        max-width: 100%;
    }

    .stats-card-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        gap: 12px;
    }
}