/*
Theme Name: Al Turath Premium
Theme URI: https://alturath-events-kw.com
Author: Antigravity
Description: Premium Luxury WordPress Theme for Al Turath Events.
Version: 4.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --gold-1: #c5a059;
    --gold-2: #e2c77d;
    --gold-3: #fcf6ba;
    --gold-dark: #8a6d3b;
    
    /* Default Dark Theme Colors */
    --bg-main: #050505;
    --bg-surface: #121212;
    --bg-surface-2: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #999999;
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: rgba(197, 160, 89, 0.2);
    --border-color: rgba(255,255,255,0.05);
    --shadow-heavy: 0 30px 60px rgba(0,0,0,0.5);
    --shadow-light: 0 10px 20px rgba(0,0,0,0.4);
    
    --gold-gradient: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 50%, var(--gold-1) 100%);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
    /* Light Theme Colors */
    --bg-main: #fcfcfc;
    --bg-surface: #ffffff;
    --bg-surface-2: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(197, 160, 89, 0.4);
    --border-color: rgba(0,0,0,0.05);
    --shadow-heavy: 0 30px 60px rgba(0,0,0,0.08);
    --shadow-light: 0 10px 20px rgba(0,0,0,0.05);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    margin: 0; padding: 0;
    overflow-x: hidden; line-height: 1.7;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--text-primary); font-weight: 600; margin-bottom: 1rem; transition: color 0.5s ease; }
.gold-text { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
a { color: var(--gold-1); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 40px; border-radius: 50px; font-size: 16px; font-weight: 600; font-family: 'Cairo', sans-serif; text-transform: uppercase; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; }
.btn-gold { background: var(--gold-gradient); color: #000 !important; border: none; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }
.btn-gold::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 100%); z-index: -1; transition: opacity 0.4s ease; opacity: 0; }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(197, 160, 89, 0.5); }
.btn-outline { background: transparent; color: var(--text-primary) !important; border: 1px solid var(--gold-1); }
.btn-outline:hover { background: var(--gold-gradient); color: #000 !important; border-color: transparent; }

/* Header & Theme Toggle */
.site-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); border-bottom: 1px solid var(--border-color); }
.site-header.scrolled { background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 12px 0; box-shadow: var(--shadow-light); }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 28px; font-weight: 800; color: var(--text-primary); display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; }
.logo i { color: var(--gold-1); font-size: 32px; }
.main-navigation ul { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.main-navigation a { color: var(--text-primary); font-size: 16px; font-weight: 600; position: relative; padding-bottom: 5px; }
.main-navigation a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: var(--gold-gradient); transition: var(--transition); }
.main-navigation a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.theme-toggle-btn { background: var(--bg-surface-2); color: var(--gold-1); border: 1px solid var(--glass-border); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: var(--transition); }
.theme-toggle-btn:hover { background: var(--gold-1); color: #000; transform: rotate(30deg); }

/* Hero */
.hero { height: 100vh; min-height: 800px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; z-index: 1; transform: scale(1.05); animation: slowZoom 20s infinite alternate; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%); z-index: 2; }
[data-theme="light"] .hero-overlay { background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.9) 100%); }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 0 20px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s 0.5s forwards ease-out; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-subtitle { font-size: 18px; color: var(--gold-1); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; display: block; font-weight: bold; }
.hero h1 { font-size: 5.5rem; line-height: 1.2; margin-bottom: 30px; text-shadow: 0 10px 30px rgba(0,0,0,0.3); color: #fff; }
[data-theme="light"] .hero h1 { color: #111; text-shadow: none; }
.hero p { font-size: 1.3rem; color: #eee; margin-bottom: 40px; max-width: 750px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
[data-theme="light"] .hero p { color: #333; text-shadow: none; font-weight: 600; }

/* Sections Global */
.section { padding: 100px 0; position: relative; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-subtitle { color: var(--gold-1); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; font-weight: bold; }
.section-title { font-size: 3.5rem; margin: 0; }

/* Features (Glassmorphism) */
.features-wrapper { margin-top: -100px; position: relative; z-index: 10; padding: 0 40px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; }
.feature-box { background: var(--glass-bg); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px 30px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-light); }
.feature-box:hover { transform: translateY(-15px); border-color: var(--gold-1); box-shadow: var(--shadow-heavy); }
.feature-icon { font-size: 40px; color: var(--gold-1); margin-bottom: 20px; display: inline-block; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-box h3 { font-family: 'Cairo', sans-serif; font-size: 20px; margin-bottom: 10px; }
.feature-box p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* About Us */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-heavy); }
.about-img img { width: 100%; display: block; }
.about-img::before { content:''; position:absolute; top:0;left:0;width:100%;height:100%; border: 2px solid var(--gold-1); border-radius: 20px; transform: scale(0.95); opacity: 0; transition: var(--transition); }
.about-wrap:hover .about-img::before { transform: scale(0.92); opacity: 1; }
.about-text h3 { font-size: 3rem; margin-bottom: 30px; line-height: 1.3; }
.about-list { list-style: none; padding: 0; margin: 30px 0; }
.about-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 18px; font-weight: 600; }
.about-list li i { color: var(--gold-1); font-size: 20px; background: var(--bg-surface-2); padding: 10px; border-radius: 50%; border: 1px solid var(--glass-border); }

/* How We Work / Process Section */
.process-section { background: var(--bg-surface-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-grid::before { content:''; position:absolute; top:40px; left:10%; width:80%; height:2px; background: dashed 2px var(--gold-1); opacity: 0.3; z-index: 1; }
@media (max-width: 992px) { .process-grid::before { display: none; } }
.process-step { text-align: center; position: relative; z-index: 2; }
.process-icon { width: 80px; height: 80px; background: var(--bg-surface); border: 2px solid var(--gold-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--gold-1); margin: 0 auto 20px; box-shadow: var(--shadow-light); transition: var(--transition); }
.process-step:hover .process-icon { background: var(--gold-gradient); color: #000; transform: scale(1.1); }
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { color: var(--text-secondary); }
.step-number { position: absolute; top: -10px; right: 50%; transform: translateX(50px); background: var(--gold-1); color: #000; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items:center; justify-content:center; font-weight:bold; font-family:sans-serif; border: 2px solid var(--bg-main); }

/* Stats Counters */
.stats-section { padding: 80px 0; background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-main) 100%); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-box h4 { font-size: 4.5rem; color: var(--gold-1); font-family: 'Playfair Display', serif; margin: 0 0 5px 0; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-box p { color: var(--text-primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; font-size: 14px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { background: var(--bg-surface); border-radius: 15px; overflow: hidden; position: relative; transition: var(--transition); border: 1px solid var(--border-color); box-shadow: var(--shadow-light); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-gradient); transform: scaleX(0); transform-origin: right; transition: transform 0.5s ease; z-index: 2; }
.service-card:hover::before { transform: scaleX(1); transform-origin: left; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); }
.service-img { height: 260px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-content { padding: 40px 35px; position: relative; z-index: 2; }
.service-icon-small { width: 60px; height: 60px; background: var(--bg-surface-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-1); font-size: 24px; margin-top: -70px; margin-bottom: 20px; border: 2px solid var(--glass-border); position: relative; z-index: 3; box-shadow: var(--shadow-light); }
.service-content h3 { font-size: 24px; margin-bottom: 15px; }
.service-content p { color: var(--text-secondary); font-size: 15px; }

/* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; background: var(--bg-surface); padding: 40px 30px; border-radius: 20px; border: 1px solid var(--border-color); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); border-color: var(--gold-1); }
.team-img { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 20px; overflow: hidden; border: 4px solid var(--glass-border); transition: var(--transition); }
.team-card:hover .team-img { border-color: var(--gold-1); }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 24px; margin-bottom: 5px; }
.team-card p { color: var(--gold-1); font-weight: bold; margin-bottom: 15px; }
.team-social { display: flex; justify-content: center; gap: 15px; }
.team-social a { color: var(--text-secondary); font-size: 18px; }
.team-social a:hover { color: var(--gold-1); transform: scale(1.2); }

/* Video Showcase */
.video-showcase { height: 60vh; min-height: 500px; position: relative; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.video-showcase::before { content:''; position:absolute; top:0;left:0;width:100%;height:100%;background: rgba(0,0,0,0.6); }
.play-btn { position: relative; z-index: 2; width: 120px; height: 120px; background: rgba(197, 160, 89, 0.4); border: 2px solid var(--gold-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 35px; cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px); padding-left: 8px; }
.play-btn:hover { background: var(--gold-1); color: var(--bg-main); transform: scale(1.1); box-shadow: 0 0 40px rgba(197, 160, 89, 0.8); }

/* Portfolio Masonry */
.portfolio-grid { columns: 3 350px; column-gap: 30px; }
.portfolio-item { break-inside: avoid; margin-bottom: 30px; position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-light); }
.portfolio-item img { width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); opacity: 0; transition: var(--transition); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { margin: 0; font-family: 'Cairo', sans-serif; font-size: 22px; color: var(--gold-1); transform: translateY(20px); transition: var(--transition); text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.portfolio-item:hover .portfolio-overlay h4 { transform: translateY(0); }

/* Packages Section */
.packages-section { background: url('https://images.unsplash.com/photo-1505934333218-8fe21ff8ce2e?auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; }
.packages-section::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 2; }
.package-card { background: var(--bg-surface); padding: 50px 40px; border-radius: 20px; text-align: center; position: relative; transition: var(--transition); border: 1px solid var(--border-color); box-shadow: var(--shadow-light); }
.package-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-heavy); }
.package-card.vip { background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-surface-2) 100%); border: 2px solid var(--gold-1); transform: scale(1.05); z-index: 2; box-shadow: var(--shadow-heavy); }
.package-card.vip:hover { transform: scale(1.05) translateY(-10px); }
.package-name { font-size: 32px; margin-bottom: 30px; font-family: 'Playfair Display', serif; }
.vip .package-name { color: var(--gold-1); }
.package-list { list-style: none; padding: 0; margin: 0 0 40px 0; text-align: right; }
.package-list li { padding: 15px 0; border-bottom: 1px solid var(--border-color); color: var(--text-primary); display: flex; align-items: center; gap: 15px; font-weight: 600; }
.package-list li i { color: var(--gold-1); font-size: 16px; }

/* Testimonials */
.testimonials-section { background: var(--bg-main); }
.testimonials-grid { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px 0 40px 0; scrollbar-width: thin; scrollbar-color: var(--gold-1) var(--bg-surface); }
.testimonials-grid::-webkit-scrollbar { height: 8px; }
.testimonials-grid::-webkit-scrollbar-thumb { background: var(--gold-gradient); border-radius: 10px; }
.testimonials-grid::-webkit-scrollbar-track { background: var(--bg-surface-2); }
.testimonial-card { min-width: 400px; background: var(--bg-surface); padding: 40px; border-radius: 20px; border: 1px solid var(--border-color); scroll-snap-align: center; box-shadow: var(--shadow-light); }
.rating { color: var(--gold-1); margin-bottom: 20px; font-size: 16px; }
.testimonial-text { font-size: 18px; font-style: italic; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.8; }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-surface-2); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold-1); border: 1px solid var(--gold-1); }

/* FAQ Section */
.faq-section { background: var(--bg-surface-2); }
.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 15px; margin-bottom: 20px; overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-light); }
.faq-item:hover { border-color: var(--gold-dark); transform: translateX(-5px); }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 20px; font-weight: 600; color: var(--text-primary); font-family: 'Cairo', sans-serif; }
.faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--text-secondary); font-size: 16px; }
.faq-item.active .faq-answer { padding: 0 30px 25px 30px; max-height: 500px; }
.faq-icon { transition: transform 0.4s ease; color: var(--gold-1); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--glass-border); }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--gold-1); color: #fff; }

/* Blog Section */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: var(--bg-surface); border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.blog-card:hover .blog-img img { transform: scale(1.1); }
.blog-content { padding: 30px; }
.blog-date { color: var(--gold-1); font-size: 14px; font-weight: bold; margin-bottom: 10px; display: block; }
.blog-content h3 { font-size: 22px; margin-bottom: 15px; }
.blog-content p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.read-more { color: var(--text-primary); font-weight: bold; display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { color: var(--gold-1); gap: 12px; }

/* Partners */
.partners-section { padding: 60px 0; border-top: 1px solid var(--border-color); background: var(--bg-main); }
.partners-track { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 60px; opacity: 0.6; filter: grayscale(100%); transition: var(--transition); }
.partners-track:hover { opacity: 1; filter: grayscale(0%); }
.partner-logo { font-size: 28px; font-family: 'Playfair Display', serif; display: flex; align-items: center; gap: 10px; color: var(--text-secondary); transition: var(--transition); cursor: pointer; font-weight: bold; }
.partner-logo:hover { color: var(--gold-1); transform: scale(1.1); }

/* Contact Form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--bg-surface); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-heavy); border: 1px solid var(--border-color); }
.contact-info { background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, var(--bg-surface-2) 100%); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.contact-info h3 { font-size: 40px; margin-bottom: 20px; }
.contact-methods { margin-top: 50px; }
.method-item { display: flex; align-items: center; gap: 25px; margin-bottom: 35px; }
.method-icon { width: 70px; height: 70px; background: var(--gold-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }
.method-text h4 { margin: 0 0 8px 0; font-family: 'Cairo', sans-serif; font-size: 20px; color: var(--text-primary); }
.method-text p { margin: 0; color: var(--text-secondary); font-size: 16px; }

.contact-form { padding: 80px 60px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px; }
.form-group { margin-bottom: 25px; }
.form-control { width: 100%; padding: 20px 25px; background: var(--bg-surface-2); border: 1px solid var(--border-color); border-radius: 12px; color: var(--text-primary); font-family: 'Cairo', sans-serif; font-size: 16px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--gold-1); background: var(--bg-surface); box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); }
textarea.form-control { resize: vertical; min-height: 150px; }

/* Animations Trigger Class */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.floating-whatsapp:hover { transform: scale(1.1) translateY(-5px); color: white; }

/* Footer */
.site-footer { background: var(--bg-surface-2); padding: 80px 0 0 0; border-top: 1px solid var(--border-color); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-secondary); margin-top: 20px; max-width: 400px; }
.footer-social { display: flex; gap: 15px; margin-top: 30px; }
.social-link { width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-primary); transition: var(--transition); }
.social-link:hover { background: var(--gold-gradient); color: #fff; border-color: transparent; transform: translateY(-5px); box-shadow: var(--shadow-light); }
.footer-links h4 { margin-bottom: 30px; font-size: 20px; color: var(--text-primary); }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--gold-1); padding-right: 10px; }
.footer-bottom { background: var(--bg-main); padding: 25px 0; text-align: center; color: var(--text-secondary); font-size: 15px; font-weight: bold; border-top: 1px solid var(--border-color); }

/* Custom CSS Variables override for Light theme forms */
[data-theme="light"] .form-control { background: #fff; color: #000; }
[data-theme="light"] .contact-info { background: #fdfdfd; border-left: 1px solid #eee; }
[data-theme="light"] .team-card { background: #fff; }

/* Ultra Responsive Fixes */
@media (max-width: 1400px) {
    .container { padding: 0 30px; }
}

@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { columns: 2; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
    .process-grid::before { display: none; }
}

@media (max-width: 1024px) {
    .about-wrap { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .package-card.vip { transform: none; }
    .package-card.vip:hover { transform: translateY(-10px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .main-navigation ul { gap: 15px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.2rem; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .features-wrapper { margin-top: 40px; padding: 0 20px; }
    .header-container { flex-direction: column; gap: 15px; padding: 15px; }
    .portfolio-grid { columns: 1; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 40px 30px; }
    .stat-box h4 { font-size: 3rem; }
    .process-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .main-navigation ul { flex-wrap: wrap; justify-content: center; }
    .testimonial-card { min-width: 300px; padding: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
    .btn { padding: 12px 25px; font-size: 14px; }
    .contact-info h3 { font-size: 30px; }
    .package-card { padding: 40px 20px; }
}
