/* --- BRAND COLORS BASED ON LOGO --- */
:root {
    --brand-cyan: #00C6D9; /* Bright cyan from the text and waves */
    --brand-teal: #008F9C; /* Deeper shade for contrast */
    --brand-gold: #FFB700; /* Gold/Orange from the sun and buildings */
    --brand-gold-hover: #E6A500;
    --dark-bg: #1A202C;
    --light-bg: #F7FAFC;
    --white: #FFFFFF;
    --text-main: #2D3748;
    --text-muted: #718096;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: var(--light-bg); color: var(--text-main); line-height: 1.7; overflow-x: hidden; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }

/* --- NAVIGATION --- */
.navbar { background-color: var(--white); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.logo-container img { height: 60px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-cyan); }
.btn-nav { background-color: var(--brand-gold); color: var(--white) !important; padding: 12px 24px; border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s; }
.btn-nav:hover { background-color: var(--brand-gold-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4); }

/* --- BUTTONS --- */
.btn-primary { display: inline-block; background-color: var(--brand-gold); color: var(--white); padding: 16px 35px; font-size: 1.1rem; font-weight: bold; text-decoration: none; border-radius: 5px; transition: 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background-color: var(--brand-gold-hover); transform: scale(1.05); }
.btn-secondary { display: inline-block; background-color: var(--brand-teal); color: var(--white); padding: 16px 35px; font-size: 1.1rem; font-weight: bold; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.btn-secondary:hover { background-color: var(--brand-cyan); }

/* --- HERO SECTION --- */
.hero-section { background: linear-gradient(rgba(0,0,0,0.7), rgba(0, 143, 156, 0.6)), url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.hero-content h1 { font-size: 4rem; color: var(--white); margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-content .highlight { color: var(--brand-gold); }
.hero-sub { font-size: 1.5rem; color: #E2E8F0; margin-bottom: 40px; }

/* --- GRIDS & CARDS --- */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.8rem; color: var(--brand-teal); margin-bottom: 15px; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: var(--text-muted); margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; transition: all 0.4s ease; border-bottom: 5px solid transparent; }
.card:hover { transform: translateY(-15px); border-bottom: 5px solid var(--brand-cyan); box-shadow: 0 20px 40px rgba(0,198,217,0.15); }
.card .icon { font-size: 3.5rem; color: var(--brand-cyan); margin-bottom: 20px; }
.card h3 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 15px; }

/* --- FAQ SECTION --- */
.faq-item { background: var(--white); margin-bottom: 15px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { padding: 20px; font-size: 1.2rem; font-weight: bold; color: var(--brand-teal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 20px 20px 20px; color: var(--text-muted); display: none; line-height: 1.8; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--brand-gold); }

/* --- ANIMATIONS (Triggered by JS) --- */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* --- FOOTER --- */
footer { background: var(--dark-bg); color: #A0AEC0; padding: 60px 0 20px 0; text-align: center; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; text-align: left;}
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; color: var(--brand-gold);}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #A0AEC0; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--brand-cyan); }

/* --- DYNAMIC PROPERTY SLIDER STYLES --- */
.slider-container { position: relative; width: 100%; height: 250px; overflow: hidden; background: #eee; }
.slider-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease-in-out; }
.slider-image.active { opacity: 1; z-index: 1; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 198, 217, 0.8); color: white; border: none; padding: 10px 15px; cursor: pointer; z-index: 10; border-radius: 50%; font-size: 1.2rem; transition: 0.3s; }
.slider-btn:hover { background: var(--brand-gold); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }

/* --- GOOGLE TRANSLATE CUSTOM STYLES --- */
.skiptranslate iframe {
    display: none !important;
}
body {
    top: 0 !important; 
}
.goog-te-gadget-simple {
    background-color: var(--light-bg) !important;
    border: 1px solid var(--brand-cyan) !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: 0.3s;
}
.goog-te-gadget-simple:hover {
    border: 1px solid var(--brand-gold) !important;
}
.goog-te-gadget-icon {
    display: none;
}

/* =========================================
   UNIFIED MOBILE RESPONSIVENESS & HAMBURGER FIX
   ========================================= */

/* Hide hamburger icon on desktop */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--brand-teal);
    cursor: pointer;
}

@media (max-width: 900px) {
    /* 1. Navbar: Logo on Left, Hamburger on Right */
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        position: relative;
    }
    
    /* 2. Show the Hamburger Icon */
    .menu-toggle {
        display: block !important;
    }

    /* 3. Hide Links by Default, Make them Dropdown */
    .nav-links {
        display: none !important; /* This hides the menu until clicked */
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: var(--white) !important;
        padding: 20px 0 !important;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1) !important;
        gap: 15px !important;
        z-index: 999;
    }

    /* 4. Active state (JS triggers this to show menu) */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .btn-nav {
        display: block !important;
        width: 80% !important;
        margin: 0 auto;
    }

    /* 5. Fix Hero Section & Grids for Mobile */
    .hero-section { height: auto; padding: 100px 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.1rem; }
    
    .grid-3, .grid-2, .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 25px; 
    }
    
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .card { padding: 25px 20px; }
    
    /* 6. Stop iPhones from auto-zooming on inputs */
    input, select, textarea { font-size: 1rem !important; }
    
    /* 7. Fix the Phone/Country Code row on Contact forms */
    div[style*="display: flex; gap: 10px;"] { 
        flex-direction: column !important; 
    }
    #countryCode, #phone { 
        width: 100% !important; 
    }
    
    .footer-grid { text-align: center; }
}