/* ==========================================
   PRIVAGLASS DESIGN SYSTEM
   Company Profile — Laravel Edition
   ========================================== */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
    /* Brand Colors */
    --navy: #d5ecff;
    --navy-dark: #0E2A38;
    --navy-light: #e8f4ff;
    --navy-xlight: #f0f7ff;

    /* Accent */
    --accent: #2B8BB5;
    --gold: #C8A84B;
    --gold-light: #D4B96A;
    --whatsapp: #25D366;

    /* Silver Accent */
    --silver: #9FAAB5;
    --silver-light: #C8CED5;
    --silver-dark: #6B7A8A;
    --silver-bg: #E8ECF0;
    --silver-shine: linear-gradient(135deg, #C8CED5 0%, #F0F2F5 50%, #C8CED5 100%);
    --silver-border: rgba(159, 170, 181, 0.3);
    --silver-glow: 0 0 20px rgba(159, 170, 181, 0.3);

    /* Text */
    --text-dark: #0D1B2A;
    --text-mid: #3A4D60;
    --text-light: #6B7A8A;

    /* Background */
    --bg: #d5ecff;
    --bg-white: #FFFFFF;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-py: 5rem;
    --section-py-lg: 7rem;
    --container-max: 1280px;
    --container-px: 1rem;

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

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 122, 138, 0.08);
    --shadow-md: 0 4px 24px rgba(107, 122, 138, 0.12);
    --shadow-lg: 0 12px 40px rgba(107, 122, 138, 0.18);
    --shadow-gold: 0 8px 24px rgba(200, 168, 75, 0.25);
    --shadow-silver: 0 8px 24px rgba(159, 170, 181, 0.25);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* ===== Section ===== */
.section {
    padding: var(--section-py) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-py-lg) 0;
    }
}

.section--navy {
    background: var(--navy);
    color: var(--navy-dark);
}

.section--navy-dark {
    background: var(--navy-dark);
    color: #fff;
}

.section--white {
    background: var(--bg-white);
}

.section--bg {
    background: var(--bg);
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 1.875rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title--light h2 {
    color: var(--navy-dark);
}

.section-title--light p {
    color: var(--text-mid);
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title h2 {
        font-size: 3rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    line-height: 1;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn--navy {
    background: var(--navy-dark);
    color: #fff;
    border-color: var(--navy-dark);
}

.btn--navy:hover {
    background: #1a3d52;
    border-color: #1a3d52;
    transform: translateY(-2px);
}

.btn--silver {
    background: var(--silver-shine);
    color: var(--navy-dark);
    border-color: var(--silver-light);
}

.btn--silver:hover {
    box-shadow: var(--shadow-silver);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--silver);
}

.btn--outline:hover {
    background: rgba(159, 170, 181, 0.1);
    border-color: var(--silver-dark);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
    background: #20bd5a;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--navy-dark);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--bg);
}

.btn svg,
.btn i {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform var(--transition-fast);
}

.btn:hover svg.arrow-right,
.btn:hover .icon-arrow {
    transform: translateX(4px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(107, 122, 138, 0.15);
    padding: 0.75rem 0;
}

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

.navbar__logo img {
    height: 2rem;
    width: auto;
    transition: transform var(--transition-normal);
}

.navbar__logo:hover img {
    transform: scale(1.05);
}

.navbar__menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.navbar__link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all var(--transition-normal);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--navy-dark);
    background: rgba(14, 42, 56, 0.05);
}

.navbar__link.active {
    color: var(--accent);
}

/* Product Dropdown */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    width: 13rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid var(--silver-border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-fast);
    overflow: hidden;
    z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-mid);
    transition: all var(--transition-fast);
}

.navbar__dropdown-item:hover {
    color: var(--accent);
    background: rgba(14, 42, 56, 0.05);
}

.navbar__dropdown-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.navbar__dropdown-dot--accent {
    background: var(--accent);
}

.navbar__dropdown-dot--gold {
    background: var(--gold);
}

.navbar__chevron {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--transition-normal);
}

.navbar__dropdown:hover .navbar__chevron {
    transform: rotate(180deg);
}

/* Navbar Right */
.navbar__right {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.navbar__lang-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--silver-dark);
    transition: all var(--transition-normal);
}

.navbar__lang-btn:hover {
    color: var(--navy-dark);
    background: rgba(14, 42, 56, 0.05);
}

.navbar__lang-btn svg {
    width: 1rem;
    height: 1rem;
}

.navbar__cta {
    padding: 0.625rem 1.25rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.navbar__cta:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 16px rgba(200, 168, 75, 0.25);
}

/* Mobile Toggle */
.navbar__toggle {
    display: flex;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--navy-dark);
    transition: background var(--transition-fast);
}

.navbar__toggle:hover {
    background: rgba(14, 42, 56, 0.05);
}

.navbar__toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 42, 56, 0.97);
    backdrop-filter: blur(16px);
    z-index: 1001;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.mobile-menu__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem;
    color: #fff;
    border-radius: var(--radius-sm);
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-menu__link {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu__bottom {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.mobile-menu__cta {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1.25rem;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
    .navbar__menu {
        display: flex;
    }

    .navbar__right {
        display: flex;
    }

    .navbar__toggle {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(213, 236, 255, 0.88) 0%, rgba(213, 236, 255, 0.75) 50%, rgba(228, 244, 255, 0.85) 100%);
    z-index: 2;
}

.btn--outline-light {
    background: rgba(255, 255, 255, 0.4);
    color: var(--navy-dark);
    border: 2px solid var(--silver-light);
    backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--silver);
    color: var(--navy-dark);
    transform: translateY(-2px);
}


.hero__content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    padding: 8rem 0 4rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(159, 170, 181, 0.15);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid var(--silver-border);
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.25rem;
    }
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero__badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero__badge-card {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--silver-border);
    box-shadow: var(--shadow-sm);
}

.hero__badge-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .hero__badge-value {
        font-size: 1.875rem;
    }
}

.hero__badge-label {
    color: var(--silver-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll-pill {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--silver);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.hero__scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    border-radius: var(--radius-full);
    background: var(--gold);
}

/* ===== Client Bar ===== */
.client-bar {
    padding: 3rem 0;
    background: var(--bg-white);
}

.client-bar__title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.client-bar__overflow {
    overflow: hidden;
}

.client-bar__track {
    display: flex;
    width: max-content;
}

.client-bar__group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    animation: marquee 35s linear infinite;
}

.client-bar__item {
    flex-shrink: 0;
    height: 2.25rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
    opacity: 1;
}


/* ===== Services Cards ===== */
.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--silver-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card--film::before {
    background: linear-gradient(90deg, var(--accent), rgba(14, 42, 56, 0.3));
}

.service-card--glass::before {
    background: linear-gradient(90deg, var(--gold), rgba(14, 42, 56, 0.3));
}

.service-card--install::before {
    background: linear-gradient(90deg, var(--navy), rgba(52, 150, 195, 0.3));
}

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

.service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card__icon--accent {
    background: rgba(52, 150, 195, 0.1);
    color: var(--accent);
}

.service-card__icon--gold {
    background: rgba(200, 168, 75, 0.1);
    color: var(--gold);
}

.service-card__icon--navy {
    background: rgba(14, 42, 56, 0.1);
    color: var(--navy-dark);
}

.service-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--transition-fast);
}

.service-card__link:hover {
    color: var(--navy-dark);
}

.service-card__link svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

/* ===== Why Privaglass ===== */
.why-card {
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(14,42,56,0.06);
    border-left: 3px solid var(--gold);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(14,42,56,0.04);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(14,42,56,0.12);
    border-left-color: var(--accent);
}

.why-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    background: rgba(200, 168, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
    transition: background 0.3s ease;
}

.why-card:hover .why-card__icon {
    background: rgba(43, 139, 181, 0.1);
}

.why-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.why-card:hover .why-card__icon svg {
    color: var(--accent);
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.why-card__desc {
    color: var(--text-mid);
    font-size: 0.8125rem;
    line-height: 1.65;
}

/* Decorative blurs */
.section--navy .deco-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.deco-blur--right {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(159, 170, 181, 0.08);
}

.deco-blur--left {
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(200, 168, 75, 0.06);
}

/* ===== Applications ===== */
.app-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    width: 100%;
}

.app-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover img {
    transform: scale(1.08);
}

.app-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 42, 56, 0.8) 0%, rgba(14, 42, 56, 0.2) 40%, transparent 100%);
    z-index: 1;
}

.app-card__hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 42, 56, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.app-card:hover .app-card__hover-overlay {
    opacity: 1;
}

.app-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 3;
}

.app-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.app-card__desc {
    color: transparent;
    font-size: 0.875rem;
    line-height: 1.6;
    transform: translateY(1rem);
    transition: all 0.4s ease;
}

.app-card:hover .app-card__desc {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(0);
}

@media (min-width: 768px) {
    .app-card__content {
        padding: 2rem;
    }

    .app-card__title {
        font-size: 1.5rem;
    }
}

/* ===== Clients Section ===== */
.clients-image {
    max-width: 100%;
    margin: 0 auto;
}

.clients-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* ===== Stats Counter ===== */
.stats {
    background: var(--navy-dark);
    padding: 4rem 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-item__value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C8CED5 0%, #F0F2F5 40%, #C8CED5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-item__value {
        font-size: 3.5rem;
    }
}

.stat-item__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Portfolio Preview ===== */
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 42, 56, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-card__info {
    transform: translateY(0);
    opacity: 1;
}

.project-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.project-card__category {
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ===== Before / After Slider ===== */
.before-after {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: col-resize;
    aspect-ratio: 16/10;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

.before-after__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.before-after__before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.before-after__label {
    position: absolute;
    bottom: 1rem;
    padding: 0.375rem 1rem;
    background: rgba(14, 42, 56, 0.8);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.before-after__label--left {
    left: 1rem;
}

.before-after__label--right {
    right: 1rem;
}

.before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    cursor: col-resize;
    z-index: 10;
    transform: translateX(-50%);
    will-change: left;
}

.before-after__handle-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.before-after__handle-knob svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--navy-dark);
}

/* ===== Before/After Room Tabs ===== */
.ba-room-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.ba-room-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--silver-border);
    border-radius: var(--radius-full);
    background: var(--bg-white);
    color: var(--text-mid);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-body);
}

.ba-room-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(52, 150, 195, 0.05);
}

.ba-room-tab.active {
    background: var(--navy-dark);
    color: #fff;
    border-color: var(--navy-dark);
}

.ba-room-tab__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

.ba-room-tab.active .ba-room-tab__dot {
    background: var(--gold);
    opacity: 1;
}

/* Slider fade transition */
.before-after {
    transition: opacity 0.25s ease;
}

/* ===== How It Works Section ===== */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .how-it-works__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.how-it-works__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.how-it-works__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.how-it-works__states {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-it-works__state {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--silver-border);
    background: var(--bg-white);
    transition: all var(--transition-slow);
}

.how-it-works__state:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--silver);
}

.how-it-works__state--off {
    border-left: 4px solid var(--navy-dark);
}

.how-it-works__state--on {
    border-left: 4px solid var(--gold);
}

.how-it-works__state-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-it-works__state--off .how-it-works__state-title {
    color: var(--navy-dark);
}

.how-it-works__state--on .how-it-works__state-title {
    color: var(--gold-dark, #b0942e);
}

.how-it-works__state-desc {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.how-it-works__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.how-it-works__spec {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(14, 42, 56, 0.03);
    border: 1px solid var(--silver-border);
}

.how-it-works__spec-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.how-it-works__spec-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--navy-dark);
}

/* ===== Certifications Banner ===== */
.certifications-banner {
    margin-top: 4rem;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: rgba(200, 168, 75, 0.05);
    border: 1px solid rgba(200, 168, 75, 0.15);
}

.certifications-banner__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.certifications-banner__subtitle {
    color: var(--text-mid);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.certifications-banner__image {
    max-width: 48rem;
    margin: 0 auto;
    display: block;
}

.certifications-banner__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* ===== Product Specs Section ===== */
.product-specs {
    padding: 5rem 0;
    background: var(--navy-dark);
    color: #fff;
}

.product-specs .section-title h2 {
    color: #fff;
}

.product-specs .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.product-specs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .product-specs__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-specs__image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-specs__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.product-specs__categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-specs__category {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all var(--transition-slow);
}

.product-specs__category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-specs__cat-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.product-specs__cat-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-specs__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-specs__item:last-child {
    border-bottom: none;
}

.product-specs__item-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
}

.product-specs__item-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
}

/* ===== Company Profile Download Button ===== */
.btn--download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold), #d4b651);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(200, 168, 75, 0.3);
}

.btn--download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 168, 75, 0.4);
}

.btn--download svg {
    width: 1rem;
    height: 1rem;
}


.lkpp {
    background: var(--bg);
    padding: 4rem 0;
}

.lkpp__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--silver-border);
}

@media (min-width: 768px) {
    .lkpp__inner {
        flex-direction: row;
        text-align: left;
    }
}

.lkpp__logo {
    width: 6rem;
    height: 6rem;
    flex-shrink: 0;
}

.lkpp__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.lkpp__desc {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== Blog Card ===== */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--silver-border);
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--silver-bg);
    color: var(--silver-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-card__date {
    color: var(--text-light);
    font-size: 0.8125rem;
}

/* ===== Final CTA ===== */
.final-cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0E2A38 0%, #163a4f 40%, #1e4d68 70%, #2a6080 100%);
}

.final-cta .deco-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.final-cta .deco-blur--1 {
    top: -30%;
    right: -10%;
    width: 50rem;
    height: 50rem;
    background: rgba(159, 170, 181, 0.08);
}

.final-cta .deco-blur--2 {
    bottom: -20%;
    left: -10%;
    width: 37.5rem;
    height: 37.5rem;
    background: rgba(200, 206, 213, 0.06);
}

.final-cta__inner {
    position: relative;
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.final-cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .final-cta__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .final-cta__title {
        font-size: 3.75rem;
    }
}

.final-cta__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .final-cta__subtitle {
        font-size: 1.25rem;
    }
}

.final-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .final-cta__buttons {
        flex-direction: row;
    }
}

.final-cta__contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

@media (min-width: 768px) {
    .final-cta__contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.final-cta__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.final-cta__contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.final-cta__contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

.final-cta__contact-label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.final-cta__contact-value {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--accent) 70%, transparent 100%);
}

.footer__main {
    padding: 4.5rem 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr 1.3fr;
        gap: 0;
    }
    .footer__grid > div {
        padding: 0 2.5rem;
        border-left: 1px solid rgba(255,255,255,0.06);
    }
    .footer__grid > div:first-child {
        padding-left: 0;
        border-left: none;
    }
    .footer__grid > div:last-child {
        padding-right: 0;
    }
}

.footer__brand-logo {
    height: 2.25rem;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer__social {
    display: flex;
    gap: 0.625rem;
}

.footer__social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.footer__social-link--wa:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: #fff;
}

.footer__social-link svg {
    width: 1.05rem;
    height: 1.05rem;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.footer__link::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-normal);
    flex-shrink: 0;
}

.footer__link:hover {
    color: #fff;
}

.footer__link:hover::before {
    width: 12px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__contact-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.footer__contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 1rem;
    height: 1rem;
}

.footer__contact-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    line-height: 1.75;
    padding-top: 0.25rem;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    transition: color var(--transition-fast);
    padding-top: 0.35rem;
    display: block;
}

.footer__contact-link:hover {
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
}

.footer__made-with {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

/* ===== WhatsApp Float ===== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.wa-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s ease-in-out infinite;
    transition: transform var(--transition-fast);
}

.wa-float__btn:hover {
    transform: scale(1.1);
}

.wa-float__btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== About Page ===== */
.about-hero {
    padding: 10rem 0 5rem;
    background: var(--navy);
    text-align: center;
}

.about-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-hero__title {
        font-size: 3.5rem;
    }
}

.about-hero__subtitle {
    color: var(--text-mid);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story__title {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-story__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.about-story__text {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
}

.about-story__text+.about-story__text {
    margin-top: 1rem;
}

.about-story__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story__image img {
    width: 100%;
    height: auto;
}

/* Vision / Mission */
.vision-mission {
    padding: 5rem 0;
    background: var(--bg);
}

.vision-mission__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vision-mission__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vm-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--silver-border);
}

.vm-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vm-card__title-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: rgba(200, 168, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.vm-card__title-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.vm-card__text {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
}

.vm-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vm-card__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.vm-card__list-icon {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.vm-card__list-icon svg {
    width: 1rem;
    height: 1rem;
}

/* ===== Products Page ===== */
.product-detail {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.product-detail__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__body {
    padding: 2rem;
}

.product-detail__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.product-detail__desc {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-detail__specs {
    border-top: 1px solid rgba(180, 190, 200, 0.3);
    padding-top: 1.5rem;
}

.product-detail__specs h4 {
    font-size: 1.125rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(180, 190, 200, 0.2);
}

.specs-table td {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-mid);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--silver-light);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 150, 195, 0.1);
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 8rem;
}

.form-error {
    color: #e53e3e;
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

/* Success Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.alert--success {
    background: rgba(37, 211, 102, 0.1);
    color: #1a8548;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.alert--error {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

/* ===== Page Header ===== */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--navy);
    text-align: center;
}

.page-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 3rem;
    }
}

.page-header__subtitle {
    color: var(--text-mid);
    font-size: 1.125rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--bg-white);
    border: 1px solid var(--silver-light);
    transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--navy-dark);
    color: #fff;
    border-color: var(--navy-dark);
}

/* ===== Blog Single ===== */
.blog-single__cover {
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.blog-single__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-single__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .blog-single__title {
        font-size: 2.5rem;
    }
}

.blog-single__body {
    color: var(--text-mid);
    font-size: 1.0625rem;
    line-height: 1.9;
}

.blog-single__body p {
    margin-bottom: 1.5rem;
}

.blog-single__body h2,
.blog-single__body h3 {
    color: var(--navy-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single__body img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.blog-single__body ul,
.blog-single__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-single__body li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* ===== Services Page ===== */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--silver-border);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-detail-card {
        grid-template-columns: auto 1fr;
    }
}

.service-detail-card__icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-md);
    background: rgba(200, 168, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.service-detail-card__icon svg {
    width: 2rem;
    height: 2rem;
}

.service-detail-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.service-detail-card__desc {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

.reveal-delay-5 {
    transition-delay: 0.75s;
}

.reveal-delay-6 {
    transition-delay: 0.9s;
}

.reveal-delay-7 {
    transition-delay: 1.05s;
}

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

::-webkit-scrollbar-track {
    background: var(--navy-xlight);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy-light);
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

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

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

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: #fff;
}

.text-muted {
    color: var(--text-light);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* ===== Map ===== */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== Project Intro ===== */
.project-intro {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.project-intro__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.project-intro__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .project-intro__title {
        font-size: 2.5rem;
    }
}

.project-intro__text {
    color: var(--text-mid);
    font-size: 1.0625rem;
    line-height: 1.9;
}

/* ===== App Showcase ===== */
.app-showcase {
    padding: 5rem 0;
}

.app-showcase--white {
    background: var(--bg-white);
}

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

.app-showcase__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .app-showcase__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 768px) {
    .app-showcase__grid--reverse .app-showcase__image-wrap {
        order: 2;
    }

    .app-showcase__grid--reverse .app-showcase__content {
        order: 1;
    }
}

.app-showcase__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.app-showcase__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-showcase__image-wrap:hover img {
    transform: scale(1.04);
}

.app-showcase__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background: rgba(200, 168, 75, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.app-showcase__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.app-showcase__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 1rem;
}

.app-showcase__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .app-showcase__title {
        font-size: 2rem;
    }
}

.app-showcase__desc {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-showcase__desc p + p {
    margin-top: 1rem;
}