/* ========================================
   PiliDocs - Styles
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #2d7a3e;
    --primary-dark: #1e5a2e;
    --primary-light: #7bc142;
    --gold: #d4a528;
    --gold-dark: #b8901f;
    --gold-light: #f5d068;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-tertiary: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-color: #334155;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html { scroll-behavior: smooth; }

/* ========================================
   Header & Navigation
   ======================================== */

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] header { background: rgba(15, 23, 42, 0.8); }
header.scrolled { box-shadow: var(--shadow-md); }

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.logo:hover { transform: scale(1.05); }

.logo-icon {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(45, 122, 62, 0.3));
    transition: filter 0.3s ease;
}
.logo:hover .logo-icon { filter: drop-shadow(0 4px 12px rgba(45, 122, 62, 0.5)); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.login-btn):hover { color: var(--primary); }

.nav-links a:not(.login-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-links a:not(.login-btn):hover::after { width: 100%; }

.theme-toggle {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.theme-toggle:hover { border-color: var(--primary); transform: scale(1.05); }

.theme-icon { width: 20px; height: 20px; transition: transform 0.5s ease; }

.login-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary) !important;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 165, 40, 0.3);
    position: relative;
    overflow: hidden;
}
.login-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.login-btn:hover::before { left: 100%; }
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212, 165, 40, 0.4); }
.login-btn::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 1100;
}
.hamburger:hover { background: rgba(45, 122, 62, 0.1); }

.hamburger .bar {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-right-mobile { display: none; align-items: center; gap: 0.75rem; }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.mobile-menu.open { max-height: 400px; padding: 1rem 0 1.5rem; opacity: 1; }

.mobile-menu a {
    display: block;
    padding: 0.9rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.mobile-menu a:hover {
    color: var(--primary);
    background: rgba(45, 122, 62, 0.06);
    border-left-color: var(--primary);
    padding-left: 2.5rem;
}

.mobile-menu .mobile-login-btn {
    display: block;
    margin: 1rem 2rem 0;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f172a !important;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 165, 40, 0.3);
    transition: all 0.3s ease;
    border-left: none !important;
}
.mobile-menu .mobile-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 40, 0.4);
    padding-left: 2rem !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    border-left-color: transparent !important;
    color: #0f172a !important;
}

/* ========================================
   Booking Modal
   ======================================== */

.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.booking-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-light);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.booking-modal-close:hover {
    background: rgba(45, 122, 62, 0.1);
    color: var(--primary);
    transform: rotate(90deg);
}

.booking-modal-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.booking-modal h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.booking-modal-steps {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-light);
}

.booking-modal-step {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.booking-modal-step:last-child { margin-bottom: 0; }

.booking-modal-step-number {
    min-width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.booking-modal-step-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 2px;
}

.booking-modal-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.3);
    margin-top: 1.5rem;
}
.booking-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 122, 62, 0.4);
}

.booking-modal-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0f1f16 0%, #1e5a2e 50%, #2d7a3e 100%);
    color: var(--bg-primary);
    padding: 180px 2rem 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .hero { background: linear-gradient(135deg, #0a0f0d 0%, #1a4028 50%, #2d7a3e 100%); }

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(123, 193, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 40, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.4;
    animation: floatbg 20s linear infinite;
}

@keyframes floatbg {
    from { transform: translateY(0); }
    to { transform: translateY(-60px); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInDown 1s ease 0.2s both;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.3s both;
}
.hero-tagline { font-size: 1.8rem; color: var(--gold-light); font-weight: 600; margin-bottom: 1rem; animation: fadeInUp 1s ease 0.4s both; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 1rem; color: rgba(255,255,255,0.9); animation: fadeInUp 1s ease 0.5s both; }
.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
}
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.7s both; }

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(212, 165, 40, 0.3);
    position: relative;
    z-index: 1;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 165, 40, 0.4); }

.btn-secondary {
    background: transparent;
    color: var(--bg-primary);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }

/* ========================================
   Video Section
   ======================================== */

.video-section {
    background: var(--bg-primary);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.video-section-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.video-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(45,122,62,0.1), rgba(123,193,66,0.08));
    border: 1px solid rgba(45, 122, 62, 0.25);
    color: var(--primary);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.video-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.video-section h2 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-section p.video-desc {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border-color),
        0 20px 60px rgba(45, 122, 62, 0.12),
        0 4px 20px rgba(0,0,0,0.08);
    background: #000;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.video-wrapper:hover {
    box-shadow:
        0 0 0 2px var(--primary-light),
        0 28px 70px rgba(45, 122, 62, 0.22),
        0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.video-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-aspect iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    display: block;
}

.video-corner {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 2;
    pointer-events: none;
}
.video-corner-tl { top: 0; left: 0; border-top: 3px solid var(--primary-light); border-left: 3px solid var(--primary-light); border-radius: 22px 0 0 0; }
.video-corner-br { bottom: 0; right: 0; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 0 22px 0; }

/* ========================================
   Shared Section Styles
   ======================================== */

section { padding: 100px 2rem; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Why Section
   ======================================== */

.why-section { background: var(--bg-secondary); transition: background-color 0.3s ease; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}
.benefit-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }

.benefit-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}
.benefit-item:hover .benefit-icon { transform: rotate(10deg) scale(1.1); }
.benefit-text { font-size: 1.1rem; color: var(--text-primary); font-weight: 500; }

/* ========================================
   Features Section
   ======================================== */

.features-section { background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2.5rem; margin-top: 4rem; }

.feature-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }

.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}
.feature-card:hover .feature-icon { transform: rotateY(360deg); }

.feature-card h3 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.feature-list { list-style: none; }

.feature-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: all 0.3s ease;
}
.feature-list li:hover { color: var(--text-primary); transform: translateX(5px); }
.feature-list li::before { content: '✓'; color: var(--primary-light); font-weight: bold; font-size: 1.3rem; min-width: 20px; }

/* ========================================
   Key Features
   ======================================== */

.key-features { background: var(--bg-secondary); }
.features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 4rem; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--bg-card);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}
.feature-item:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--bg-primary); transform: translateX(10px); box-shadow: var(--shadow-lg); }
.feature-bullet { font-size: 1.8rem; color: var(--gold); min-width: 30px; transition: transform 0.3s ease; }
.feature-item:hover .feature-bullet { color: var(--gold-light); transform: scale(1.3) rotate(360deg); }
.feature-item span:last-child { font-weight: 500; font-size: 1.05rem; }

/* ========================================
   Industries Section
   ======================================== */

.industries-section { background: var(--bg-primary); position: relative; }
.industries-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 4rem; }

.industry-item {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.industry-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 193, 66, 0.1), transparent);
    transition: left 0.5s ease;
}
.industry-item:hover::before { left: 100%; }
.industry-item:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--bg-primary); border-color: var(--primary-light); transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* ========================================
   Footer CTA
   ======================================== */

.footer-cta {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 165, 40, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 165, 40, 0.2) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}
.footer-cta-content { position: relative; z-index: 1; }
.footer-cta h2 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.footer-cta p { font-size: 1.3rem; margin-bottom: 1rem; opacity: 0.95; }
.footer-cta .highlight { font-size: 1.6rem; font-weight: 700; margin: 2rem 0; color: var(--gold-light); }

/* ========================================
   Footer
   ======================================== */

footer {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-company { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text-primary); }
.footer-copyright { font-size: 0.95rem; line-height: 1.8; }

/* ========================================
   Scroll to Top Button
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 40, 0.3);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(212, 165, 40, 0.4); }

/* ========================================
   Media Queries
   ======================================== */

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right-mobile { display: flex; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    nav { padding: 1rem 1.25rem; position: relative; }
    .logo { font-size: 1.2rem; }
    .logo-icon { height: 35px; }
    .booking-modal { padding: 2rem 1.5rem; }
    .booking-modal h3 { font-size: 1.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .features-grid, .features-list, .industries-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .video-section { padding: 60px 1rem; }
    .video-section h2 { font-size: 1.75rem; }
    .video-wrapper { border-radius: 14px; }
}

@media (max-width: 480px) {
    .hero { padding: 150px 1rem 80px; }
    section { padding: 60px 1rem; }
    .footer-cta { padding: 60px 1rem; }
}