/* ==========================================================================
   Premium Interactive CSS for Arusuvai Virundhu
   ========================================================================== */

/* Variables */
:root {
    --primary: #D4AF37;       /* Gold */
    --primary-dark: #B5952F;
    --secondary: #800020;     /* Burgundy */
    --secondary-light: #A31236;
    --dark-bg: #0F0F0F;       /* Deep Black */
    --dark-surface: #1A1A1A;
    --light-bg: #FDFBF7;
    --white: #FFFFFF;
    --cream-bg: #FDFCF0;
    --text-main: #333333;
    --text-muted: #777777;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    cursor: none; /* Custom cursor */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; cursor: none; }

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section { padding: 120px 0; position: relative; }

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
}

/* Typography */
h1, h2, h3, h4, .logo-text { font-family: var(--font-heading); font-weight: 600; }

.section-title {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), #FFDF73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
    z-index: -1;
}

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

.btn-glow {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--dark-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4); }

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

.btn-outline-glow i { margin-right: 10px; }

.btn-outline-glow:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* Header Glassmorphism */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.header.scrolled .logo-text, .header.scrolled .nav-links a { color: var(--secondary); }

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

.site-logo { 
    height: 70px; 
    width: auto; 
    transition: var(--transition-normal); 
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.header.scrolled .site-logo {
    height: 60px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

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

.btn-nav {
    background: var(--primary);
    color: var(--dark-bg) !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-nav::after { display: none; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-bg.png') center/cover;
    background-attachment: fixed; /* Parallax */
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

.hero-text-wrapper { max-width: 800px; text-align: center; margin: 0 auto; }

.hero .subtitle {
    color: var(--primary); font-family: var(--font-body);
    letter-spacing: 5px; text-transform: uppercase;
    display: block; margin-bottom: 15px; font-weight: 500;
}

.hero-headline {
    font-size: 5.5rem; color: var(--white);
    line-height: 1; margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subheadline {
    font-size: 2.5rem; color: var(--primary);
    font-family: var(--font-body); font-weight: 300;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.2rem; color: #ccc;
    font-style: italic; margin-bottom: 40px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); display: flex;
    flex-direction: column; align-items: center; gap: 10px;
    color: var(--white); opacity: 0.7;
}

.mouse {
    width: 26px; height: 40px;
    border: 2px solid var(--white); border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: ''; position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: var(--primary);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

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

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 60%; height: 60%;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
}
.image-frame::after {
    content: ''; position: absolute;
    bottom: 0; right: 0; width: 60%; height: 60%;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.placeholder-img {
    width: 100%; height: 500px;
    background: var(--dark-surface);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.2rem;
    z-index: 1; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.placeholder-img i { font-size: 3rem; margin-bottom: 10px; color: var(--primary); }

.about-real-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.floating-badge {
    position: absolute; bottom: 40px; right: -20px;
    background: var(--secondary); color: var(--white);
    padding: 20px; border-radius: 10px;
    box-shadow: 0 15px 30px rgba(128,0,32,0.3);
    text-align: center; z-index: 2;
}

.floating-badge .number { display: block; font-size: 2.5rem; font-family: var(--font-heading); color: var(--primary); line-height: 1; }
.floating-badge .text { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.features-list { margin-top: 40px; display: flex; flex-direction: column; gap: 25px; }

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

.icon-box {
    min-width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.5rem;
    transition: var(--transition-normal);
}

.feature-item:hover .icon-box { background: var(--secondary); color: var(--white); transform: scale(1.1) rotate(5deg); }

.feature-item h4 { font-family: var(--font-body); font-size: 1.2rem; color: var(--secondary); margin-bottom: 5px; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* 3D Services Cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }

.service-card-3d {
    perspective: 1000px;
    height: 350px;
}

.card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card-3d:hover .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
    position: absolute; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    border-radius: 15px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-front { background: var(--cream-bg); border: 1px solid rgba(0,0,0,0.05); }

.card-front .icon { font-size: 4rem; color: var(--primary); margin-bottom: 20px; }

.card-front .service-icon-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-front h3 { font-size: 1.5rem; color: var(--secondary); }

.card-line { width: 50px; height: 2px; background: var(--primary); margin-top: 15px; transition: width 0.3s; }
.service-card-3d:hover .card-line { width: 100px; }

.card-back {
    background: var(--secondary); color: var(--white);
    transform: rotateY(180deg);
}

.card-back p { margin-bottom: 25px; font-size: 0.95rem; opacity: 0.9; }

.btn-sm { padding: 10px 25px; border: 1px solid var(--primary); color: var(--primary); border-radius: 30px; }
.btn-sm:hover { background: var(--primary); color: var(--secondary); }

/* Events Interactive Grid */
.events-interactive-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; margin-top: 50px;
}

.event-box {
    position: relative; height: 250px; border-radius: 15px;
    overflow: hidden; cursor: none;
}

.event-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-box::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.event-content {
    position: absolute; bottom: -30px; left: 0; width: 100%; padding: 30px;
    z-index: 2; color: var(--white); transition: bottom 0.4s ease;
}

.event-content i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; display: block; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; }
.event-content h3 { font-size: 1.3rem; margin: 0; }

.event-box:hover .event-bg { transform: scale(1.1); }
.event-box:hover .event-content { bottom: 0; }
.event-box:hover .event-content i { opacity: 1; transform: translateY(0); }

/* Dark Luxury Why Choose Us */
.dark-luxury { background: var(--dark-bg); color: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px; border-radius: 15px;
    text-align: center; transition: var(--transition-normal);
}

.glass-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); background: rgba(255,255,255,0.05); }

.glow-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), #000);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--primary);
    box-shadow: 0 0 20px rgba(128,0,32,0.5);
    position: relative;
}

.glow-icon::after {
    content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%; border: 1px dashed var(--primary);
    animation: spin 10s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.glass-card h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 15px; }
.glass-card p { color: #aaa; font-size: 0.95rem; }

/* ==========================================================================
   CENTERED PREMIUM BOOKING FORM
   ========================================================================== */

.booking {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212,175,55,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(128,0,32,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.booking-centered-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--cream-bg);
    border-radius: 24px;
    padding: 0;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.08),
        0 0 0 1px rgba(212,175,55,0.1);
    overflow: hidden;
    position: relative;
}

/* Card Header */
.booking-card-header {
    text-align: center;
    padding: 45px 40px 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, #5C0015 100%);
    position: relative;
    overflow: hidden;
}

.booking-card-header::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.booking-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--primary), #B5952F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
}

.booking-header-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.booking-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.booking-card-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-header-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Form Area */
.booking-centered-card .modern-form {
    padding: 40px 50px 50px;
}

.modern-form .input-row { display: flex; gap: 24px; margin-bottom: 28px; }
.modern-form .input-row-3col { display: flex; gap: 24px; }
.modern-form .input-row-3col .input-group { flex: 1; }

.input-group { position: relative; width: 100%; margin-bottom: 28px; }
.modern-form .input-row .input-group { margin-bottom: 0; }
.modern-form .input-row-3col .input-group { margin-bottom: 0; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 16px 0 12px;
    border: none;
    border-bottom: 2px solid #E8E0D0;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.3s ease;
    outline: none;
}

.input-group select { cursor: pointer; color: var(--text-muted); }
.input-group select:focus { color: var(--text-main); }

.input-group label {
    position: absolute; top: 16px; left: 0;
    color: var(--text-muted); font-size: 0.95rem;
    pointer-events: none; transition: 0.3s ease all;
}

.input-group label i {
    margin-right: 6px;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

/* Material Design style label animation */
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label,
label.active {
    top: -12px; font-size: 0.78rem; color: var(--primary-dark); font-weight: 500;
}

.input-group input:focus, .input-group textarea:focus {
    border-bottom-color: var(--primary);
}

/* Subtle glow on focus */
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-bottom-color: var(--primary);
    box-shadow: 0 2px 0 0 var(--primary);
}

/* Submit Button */
.submit-btn-glow {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-bg), #1a1a2e);
    color: var(--primary);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: left 0.6s ease;
}

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

.submit-btn-glow:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    transform: translateY(-2px);
}

.submit-btn-glow i.icon-right { transition: transform 0.3s; }
.submit-btn-glow:hover i.icon-right { transform: translateX(5px); }

/* Responsive */
@media (max-width: 768px) {
    .booking-centered-card .modern-form {
        padding: 30px 25px 35px;
    }

    .modern-form .input-row,
    .modern-form .input-row-3col {
        flex-direction: column;
        gap: 0;
    }

    .modern-form .input-row .input-group,
    .modern-form .input-row-3col .input-group {
        margin-bottom: 25px;
    }

    .booking-card-header {
        padding: 35px 25px 25px;
    }

    .booking-card-title {
        font-size: 1.6rem;
    }
}

/* Founders & Contact Split */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.founders-flex { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }

.founder-profile { display: flex; align-items: center; gap: 20px; background: var(--white); padding: 20px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.03); transition: transform 0.3s; border-left: 4px solid var(--primary); }
.founder-profile:hover { transform: translateX(10px); }

.founder-avatar { width: 70px; height: 70px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--secondary); }

.founder-info h3 { font-size: 1.2rem; color: var(--dark-bg); margin-bottom: 5px; }
.founder-info span { color: var(--primary); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; }

.contact-card { background: var(--secondary); color: var(--white); padding: 50px; border-radius: 20px; position: relative; overflow: hidden; }

.contact-card h2 { font-size: 2rem; margin-bottom: 30px; }

.contact-list li { display: flex; gap: 20px; margin-bottom: 25px; }
.contact-list .c-icon { font-size: 1.5rem; color: var(--primary); margin-top: 5px; }
.contact-list .c-text strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }
.contact-list .c-text p, .contact-list .c-text a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.contact-list .c-text a:hover { color: var(--primary); }

/* Footer */
.footer { background: #362118; color: #b0a095; padding: 80px 0 0; }

.footer-content { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 50px; }

.footer-brand-name { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; }
.footer-brand-tagline { font-size: 1rem; color: #a4968d; font-style: italic; margin-bottom: 15px; }
.footer-brand-desc { color: #b0a095; margin-bottom: 25px; max-width: 500px; font-size: 0.95rem; line-height: 1.6; }
.footer-brand-actions { display: flex; gap: 15px; }
.btn-footer-action { border: 1px solid rgba(212,175,55,0.2); color: var(--primary); padding: 10px 20px; font-size: 0.9rem; background: rgba(0,0,0,0.2); border-radius: 6px; text-decoration: none; transition: background 0.3s; }
.btn-footer-action:hover { background: rgba(212,175,55,0.1); }
.btn-footer-action i { margin-right: 8px; font-size: 1rem; }
.btn-footer-action .fa-whatsapp { color: white; }
.btn-footer-action .fa-phone-alt { color: #c94f5b; }

.footer-links h3, .footer-contact h3 { font-size: 1rem; margin-bottom: 25px; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
.footer-links a { display: block; color: #b0a095; margin-bottom: 12px; transition: color 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.event-list { list-style: none; padding: 0; margin: 0; }
.event-list li { color: #b0a095; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.event-list li i { font-size: 0.9rem; }

.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #666; font-size: 0.9rem; }

/* Floating Actions */
.floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 99; }

.f-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: var(--transition-normal); }
.f-btn:hover { transform: scale(1.1) translateY(-5px); }

.whatsapp { background-color: #25D366; }
.call { background-color: var(--primary); }

.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Responsive */
@media (max-width: 992px) {
    .hero-headline { font-size: 4rem; }
    .about-grid, .split-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html, a { cursor: auto; } /* Disable custom cursor on mobile */
    .cursor-dot, .cursor-outline { display: none; }
    
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--cream-bg); flex-direction: column; gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    
    .nav-link { color: var(--dark-bg); padding: 15px 20px; width: 100%; border-bottom: 1px solid #f0f0f0; }
    .btn-nav { border-radius: 0; width: 100%; text-align: center; }
    
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .menu-toggle .bar { width: 25px; height: 3px; background: var(--secondary); transition: 0.3s; }
    
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero-headline { font-size: 3rem; }
    .hero-subheadline { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .modern-form .input-row { flex-direction: column; gap: 0; }
    .footer-content { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOUNDERS SECTION — Premium Template
   ========================================================================== */

.founders-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(128,0,32,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.founders-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
    line-height: 1.7;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Premium Founder Card --- */
.founder-premium-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--cream-bg);
}

.founder-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Card Top (Colored Header) */
.founder-card-top {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.founder-card-top--burgundy {
    background: linear-gradient(135deg, var(--secondary) 0%, #5C0015 100%);
}

.founder-card-top--green {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
}

/* Initials Circle */
.founder-initials-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), #B5952F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.3);
}

.initials {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.initials-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.initials-badge i {
    font-size: 0.7rem;
    color: var(--white);
}

/* Founder photo inside circle (replaces initials) */
.founder-has-photo {
    padding: 0;
    /* overflow: hidden removed so the crown badge is not clipped */
}

.founder-circle-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.founder-name {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.founder-designation {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Card Bottom */
.founder-card-bottom {
    padding: 30px;
}

.founder-bio {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

.founder-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.founder-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 6px 0;
}

.founder-contact-link:hover {
    color: var(--primary-dark);
}

.founder-contact-link i {
    width: 30px;
    height: 30px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.founder-contact-link:hover i {
    background: var(--primary);
    color: var(--white);
}

/* Founder WhatsApp Button */
.founder-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.founder-whatsapp-btn i {
    font-size: 1.3rem;
}

.founder-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* ==========================================================================
   CONTACT STRIP
   ========================================================================== */
.contact-strip {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-bg);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(212,175,55,0.15);
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.contact-strip-item strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 3px;
}

.contact-strip-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-strip-item p a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.contact-strip-item p a:hover {
    color: var(--primary-dark);
}

.contact-strip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-strip-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    margin: 0 10px;
    flex-shrink: 0;
}

/* Google Translate Widget Styling */
.nav-translate {
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: #A31236; /* Red for inactive */
    border: 1px solid #A31236;
    color: var(--white);
    font-family: var(--font-body);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 55px;
    text-align: center;
}

.lang-btn:hover,
.lang-btn.active {
    background: #25D366; /* Green for active */
    color: var(--white);
    border-color: #25D366;
}

.goog-te-gadget-simple {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-translate {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding: 10px 0;
    }
}

/* ==========================================================================
   FOUNDERS RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-strip {
        flex-direction: column;
        gap: 25px;
        padding: 30px 25px;
    }

    .contact-strip-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .contact-strip-item {
        width: 100%;
        justify-content: flex-start;
    }
}

