/* ============================================================
   SHREE RATLAM JEWELLERS - Premium Jewellery Website Styles
   Design System: Gold (#C8A44E) | White (#FFFFFF) | Black (#1A1A1A)
   Typography: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* === CSS CUSTOM PROPERTIES (Design Tokens) === */
:root {
    /* Primary Colors */
    --gold-primary: #C8A44E;
    --gold-light: #E8D5A3;
    --gold-dark: #A88B3A;
    --gold-gradient: linear-gradient(135deg, #C8A44E 0%, #E8D5A3 50%, #C8A44E 100%);
    --gold-gradient-hover: linear-gradient(135deg, #E8D5A3 0%, #C8A44E 50%, #E8D5A3 100%);
    --gold-text-gradient: linear-gradient(135deg, #C8A44E, #F5E6B8, #C8A44E);
    
    /* Neutral Colors */
    --black: #1A1A1A;
    --black-soft: #2D2D2D;
    --dark-charcoal: #333333;
    --gray-dark: #555555;
    --gray-medium: #888888;
    --gray-light: #CCCCCC;
    --gray-lighter: #E8E8E8;
    --off-white: #F8F6F0;
    --cream: #FDF9F0;
    --white: #FFFFFF;
    
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F6F0;
    --bg-dark: #1A1A1A;
    --bg-darker: #111111;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(200, 164, 78, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(200, 164, 78, 0.3);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-wide: 1340px;
    --container-padding: 0 20px;
    
    /* Borders */
    --border-gold: 1px solid rgba(200, 164, 78, 0.3);
    --border-light: 1px solid rgba(0, 0, 0, 0.06);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Header Height */
    --header-height: 120px;
    --topbar-height: 40px;
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
}

/* === UTILITY CLASSES === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gold-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: var(--gold-primary);
    background: var(--bg-primary);
    padding: 0 12px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-dark);
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 164, 78, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(200, 164, 78, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes rotate-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(200, 164, 78, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* === TOP INFO BAR === */
.top-bar {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(200, 164, 78, 0.15);
    overflow: hidden;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 164, 78, 0.4), transparent);
}

.top-bar .container {
    max-width: var(--container-wide);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-base);
    letter-spacing: 0.3px;
}

.top-bar-item:hover {
    color: var(--gold-light);
}

.top-bar-item i {
    color: var(--gold-primary);
    font-size: 0.72rem;
    width: 14px;
    text-align: center;
}

.top-bar-separator {
    width: 1px;
    height: 14px;
    background: rgba(200, 164, 78, 0.25);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    transition: var(--transition-base);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-social a:hover {
    color: var(--gold-primary);
    border-color: rgba(200, 164, 78, 0.4);
    background: rgba(200, 164, 78, 0.08);
    transform: translateY(-1px);
}

/* === HEADER & NAVIGATION === */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-slow);
}

.header-wrapper.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.header-wrapper.scrolled .top-bar {
    height: 0;
    overflow: hidden;
    border-bottom: none;
    opacity: 0;
    padding: 0;
}

.header {
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.08);
}

.header-wrapper.scrolled .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    height: 70px;
    border-bottom: 1px solid rgba(200, 164, 78, 0.12);
}

.header .container {
    max-width: var(--container-wide);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    width: auto;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 6px rgba(200, 164, 78, 0.15));
}

.header-wrapper.scrolled .logo img {
    height: 42px;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.8px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.header-wrapper.scrolled .logo-name {
    color: var(--black);
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    color: var(--gold-light);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    transition: var(--transition-base);
    font-weight: 500;
}

.header-wrapper.scrolled .logo-tagline {
    color: var(--gold-primary);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 15px;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.4px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.header-wrapper.scrolled .nav-link {
    color: var(--dark-charcoal);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all var(--transition-base);
    border-radius: 2px;
    transform: translateX(-50%);
}

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

/* Nav separator dots */
.nav-dot {
    width: 3px;
    height: 3px;
    background: rgba(200, 164, 78, 0.35);
    border-radius: 50%;
    flex-shrink: 0;
}

.header-wrapper.scrolled .nav-dot {
    background: rgba(200, 164, 78, 0.4);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item-dropdown .nav-link .dropdown-arrow {
    font-size: 0.6rem;
    transition: var(--transition-base);
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 230px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(200, 164, 78, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-top: 1px solid rgba(200, 164, 78, 0.1);
    border-left: 1px solid rgba(200, 164, 78, 0.1);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    font-size: 0.88rem;
    color: var(--dark-charcoal);
    transition: var(--transition-base);
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: var(--transition-base);
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--gold-primary);
    padding-left: 26px;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.dropdown-menu a i {
    font-size: 0.8rem;
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

/* CTA Button in nav */
.nav-cta {
    background: var(--gold-gradient) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: var(--border-radius-xl) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(200, 164, 78, 0.35);
    position: relative;
    overflow: hidden;
    margin-left: 8px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent) !important;
    transition: left 0.6s ease !important;
}

.nav-cta:hover::before {
    left: 100% !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(200, 164, 78, 0.45);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.menu-toggle span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.header-wrapper.scrolled .menu-toggle span {
    background: var(--black);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 100%;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Decorative floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 60%; top: 70%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 3s; }
.particle:nth-child(7) { left: 50%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 70%; top: 20%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    25% { opacity: 0.8; transform: translateY(-30px) scale(1); }
    75% { opacity: 0.4; transform: translateY(-80px) scale(0.5); }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 78, 0.15);
    border: 1px solid rgba(200, 164, 78, 0.3);
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title span {
    display: block;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(200, 164, 78, 0.6);
}

.btn-outline:hover {
    background: rgba(200, 164, 78, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline-dark:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(200, 164, 78, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* === ABOUT SECTION === */
.about {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

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

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Decorative frame */
.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold-lg);
    animation: pulse-gold 3s ease-in-out infinite;
}

.about-experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}

.about-content {
    padding-left: 20px;
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    font-size: 2.4rem;
}

.about-content .section-divider {
    margin: 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-top: 24px;
}

.about-text p + p {
    margin-top: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-charcoal);
}

.about-feature-item i {
    color: var(--gold-primary);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 78, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-btn {
    margin-top: 36px;
}

/* === SERVICES SECTION === */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(200, 164, 78, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    transition: all var(--transition-slow);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 78, 0.3);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.service-card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--gold-primary);
}

.service-card-icon i {
    font-size: 1.1rem;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.service-card-body {
    padding: 24px 20px;
    text-align: center;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* === MISSION & VISION SECTION === */
.mission-vision {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 164, 78, 0.05) 0%, transparent 50%);
    animation: rotate-shine 30s linear infinite;
    pointer-events: none;
}

.mission-vision .section-title {
    color: var(--white);
}

.mission-vision .section-divider::before {
    background: var(--bg-dark);
}

.mission-vision .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.mv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 164, 78, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
}

.mv-card:hover {
    border-color: rgba(200, 164, 78, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 164, 78, 0.1);
    border: 1px solid rgba(200, 164, 78, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.mv-card:hover .mv-icon {
    background: var(--gold-primary);
}

.mv-icon i {
    font-size: 1.6rem;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.mv-card:hover .mv-icon i {
    color: var(--white);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.mv-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: italic;
}

.mv-text::before,
.mv-text::after {
    content: '"';
    color: var(--gold-primary);
    font-size: 1.5rem;
}

/* === WHY CHOOSE US SECTION === */
.why-choose-us {
    background: var(--bg-primary);
    position: relative;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wcu-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--border-radius-md);
    border: var(--border-light);
    background: var(--white);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.wcu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.wcu-card:hover::after {
    transform: scaleX(1);
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 78, 0.2);
}

.wcu-icon {
    width: 68px;
    height: 68px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.wcu-card:hover .wcu-icon {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: scale(1.1);
}

.wcu-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.wcu-card:hover .wcu-icon i {
    color: var(--white);
}

.wcu-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.wcu-desc {
    font-size: 0.88rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* === CONTACT SECTION === */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
}

.contact-info .section-subtitle,
.contact-info .section-title {
    text-align: left;
}

.contact-info .section-divider {
    margin: 0;
}

.contact-intro {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 36px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: var(--border-light);
    transition: all var(--transition-base);
}

.contact-detail-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 78, 0.3);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 164, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.contact-detail-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-detail-content a:hover {
    color: var(--gold-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: var(--border-light);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 0.92rem;
    color: var(--gray-medium);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group label .required {
    color: #DC3545;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--dark-charcoal);
    transition: all var(--transition-base);
}

.form-control::placeholder {
    color: var(--gray-light);
}

.form-control:focus {
    border-color: var(--gold-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

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

/* Checkbox custom */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--gray-dark);
    line-height: 1.5;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

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

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    display: block;
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* === GOOGLE MAP SECTION === */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.05);
    transition: filter var(--transition-base);
}

.map-container:hover {
    filter: grayscale(0%) contrast(1);
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .logo-name {
    font-size: 1.4rem;
}

.footer-brand-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--white);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

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

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-links a::before {
    content: '›';
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-top: 5px;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--gold-primary);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--gold-primary);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-lg);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* === POLICY PAGES STYLES === */
.policy-page {
    padding-top: calc(var(--header-height) + 40px);
}

.policy-hero {
    background: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 164, 78, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.policy-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.policy-content {
    padding: 60px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(200, 164, 78, 0.2);
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    margin-top: 24px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 14px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.policy-content ul li {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.9;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.policy-content ul li::before {
    content: '•';
    color: var(--gold-primary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.policy-update {
    margin-top: 40px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--gold-primary);
}

.policy-update p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* === RESPONSIVE DESIGN === */

/* Tablets - Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.84rem;
    }

    .nav-cta {
        padding: 9px 20px !important;
        font-size: 0.84rem !important;
    }
}

/* Tablets - Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

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

    /* Fix header for mobile */
    .header-wrapper {
        position: fixed;
    }

    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: 70px;
    }

    .logo-name {
        color: var(--black);
        font-size: 1.1rem;
    }

    .logo-tagline {
        color: var(--gold-primary);
        font-size: 0.62rem;
    }

    .logo img {
        height: 42px;
    }

    /* Hide nav dots on mobile */
    .nav-dot {
        display: none;
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }

    .menu-toggle span {
        background: var(--black);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right var(--transition-slow);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--dark-charcoal);
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .header-wrapper.scrolled .nav-link {
        color: var(--dark-charcoal);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 16px;
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }
    
    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .dropdown-menu::before {
        display: none;
    }
    
    .nav-item-dropdown.open .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-menu a {
        padding: 8px 16px;
        font-size: 0.92rem;
    }

    .dropdown-menu a::before {
        display: none;
    }
    
    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 220px;
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-divider {
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }
    
    /* Mission Vision */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mv-card {
        padding: 36px 28px;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-info .section-subtitle,
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-info .section-divider {
        margin: 0 auto;
    }
    
    .contact-intro {
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Map */
    .map-container {
        height: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Policy pages */
    .policy-hero h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 40px 20px 60px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .wcu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .mv-title {
        font-size: 1.4rem;
    }
    
    .mv-text {
        font-size: 1.05rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* === PRINT STYLES === */
@media print {
    .header, .footer, .back-to-top, .whatsapp-float, .preloader {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        color: #000;
    }
}
