/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Professional Color Palette */
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --text-dark: #2c2c2c;
    --text-light: #777777;
    --text-lightest: #f5f5f5;
    --background-light: #f8f8f8;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --white: #fffaf0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ===== COMMON BUTTON STYLES ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-lightest);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-btn.secondary:hover {
    background: var(--secondary-color);
    color: var(--text-lightest);
}

.cta-btn.outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-btn.outline:hover {
    background: var(--secondary-color);
    color: var(--text-lightest);
}

.cta-btn.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== COMMON ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== PAGE HERO COMMON STYLES ===== */
.page-hero {
    background: url('../images/heroes/hero.jpg') center/cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7);
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
    color: var(--text-lightest);
}

/* ===== COMMON SECTION STYLES ===== */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ===== HEADER & NAVIGATION - ULTRA COMPACT ===== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0; /* Further reduced */
    position: relative;
}

/* Logo Styles - Ultra Compact */
.nav-brand {
    flex-shrink: 0;
    z-index: 1002;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced gap */
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 55px; /* Further reduced */
    width: auto;
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; /* Smaller */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.6rem; /* Smaller */
    color: var(--primary-dark);

    font-weight: 400;
    letter-spacing: 0.3px; /* Reduced */
    text-transform: uppercase;
}

/* Desktop Navigation - ULTRA COMPACT */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem; /* Further reduced */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0.15rem; /* Further reduced */
    font-size: 0.82rem; /* Smaller */
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px; /* Thinner */
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Navigation CTA - ULTRA COMPACT */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* Further reduced */
}

/* Phone Numbers Container - SAME FONT SIZE & COMPACT */
.nav-phone-container {
    display: flex;
    flex-direction: column;
    gap: 0px; /* No gap between numbers */
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduced gap */
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.78rem; /* Same font size for both */
    transition: var(--transition);
    padding: 0.25rem 0.5rem; /* Smaller padding */
    border-radius: 12px; /* Smaller radius */
    background: var(--background-light);
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--secondary-color);
    background: rgba(201, 169, 110, 0.1);
}

.nav-phone i {
    color: var(--secondary-color);
    font-size: 0.7rem; /* Smaller icons */
}
.phone-landline {
    display: flex;
    align-items: center;
    gap: 5px; /* Reduced gap */
    font-size: 0.78rem; /* Same font size as mobile */
    color: var(--text-dark);
    padding: 0.08rem 0.5rem; /* Minimal padding */
    text-decoration: none !important; /* underline removed */
}

.phone-landline i {
    color: var(--secondary-color);
    font-size: 0.65rem; /* Smaller icon */
}

.phone-landline span {
    text-decoration: none !important; /* extra safe */
}


/* CTA Buttons - MORE COMPACT */
.cta-btn.call-us {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1.5px solid var(--secondary-color); /* Thinner border */
    box-shadow: 0 1px 6px rgba(212, 175, 55, 0.25);
    padding: 8px 16px; /* Smaller padding */
    font-size: 0.85rem; /* Smaller font */
}

.cta-btn.call-us:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(200, 169, 126, 0.35);
}

/* Language Translator - MORE COMPACT & ROUND */
.language-translator {
    margin-right: 0.6rem; /* Reduced margin */
}

.language-translator .goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.72rem !important; /* Smaller */
}

.language-translator .goog-te-gadget-simple {
    background: transparent !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 12px !important; /* More rounded */
    padding: 3px 8px !important; /* Smaller padding */
    font-size: 0.72rem !important; /* Smaller */
}

.language-translator .goog-te-menu-value span {
    color: var(--text-dark) !important;
    font-size: 0.72rem !important; /* Smaller */
}

/* ===== RESPONSIVE DESIGN - ULTRA COMPACT ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.8rem; /* Even more compact */
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.1rem;
    }
    
    .logo-img {
        height: 52px;
    }
    
    .logo-main {
        font-size: 1.05rem;
    }
    
    .logo-tagline {
        font-size: 0.58rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.7rem;
    }
    
    .nav-link {
        font-size: 0.78rem;
    }
    
    .nav-cta {
        gap: 0.5rem;
    }
    
    .language-translator {
        margin-right: 0.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
    
    .nav-phone,
    .phone-landline {
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .phone-landline {
        display: none;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        padding: 0.35rem;
        border-radius: 50%;
    }
    
    .nav-phone i {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0; /* Minimal padding */
    }
    
    .logo-img {
        height: 48px;
    }
    
    /* Mobile menu styles remain the same */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px; /* Slightly narrower */
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 65px 1.2rem 1.2rem; /* Reduced padding */
        gap: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -4px 0 25px rgba(0, 0, 0, 0.08);
        border-left: 1px solid rgba(212, 175, 55, 0.08);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-link {
        display: block;
        padding: 0.8rem 0; /* Reduced padding */
        font-size: 0.9rem;
        width: 100%;
        color: var(--text-dark);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--secondary-color);
        background: none;
    }
    
    .nav-link.active {
        color: var(--secondary-color);
        font-weight: 600;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 6px;
        padding: 0.8rem 0.8rem !important; /* Reduced padding */
        margin: 0.15rem 0;
    }
    
    /* Hide desktop CTA on mobile */
    .nav-cta {
        display: none;
    }
    
    /* Mobile CTA Buttons */
    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 0.6rem; /* Reduced gap */
        margin-top: 1.2rem; /* Reduced margin */
        width: 100%;
        padding: 0 0.3rem; /* Minimal padding */
    }
    
    .mobile-cta .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 0.8rem; /* Smaller buttons */
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 240px; /* Narrower */
        padding: 60px 1rem 1rem; /* Reduced padding */
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.7rem 0; /* Further reduced */
    }
    
    .mobile-cta {
        gap: 0.5rem;
    }
    
    .nav-cta .cta-btn.primary {
        display: none;
    }
}

@media (max-width: 360px) {
    .nav-menu {
        width: 100%;
    }
    
    .logo-img {
        height: 42px;
    }
}
/* ===== MOBILE HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

/* ===== LANGUAGE TRANSLATOR STYLES ===== */
.language-translator {
    margin-right: 0.8rem;
}

.language-translator .goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important;
}

.language-translator .goog-te-gadget-simple {
    background: transparent !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 15px !important;
    padding: 4px 10px !important;
    font-size: 0.75rem !important;
}

.language-translator .goog-te-menu-value span {
    color: var(--text-dark) !important;
    font-size: 0.75rem !important;
}

.language-translator .goog-te-menu-value i {
    display: none !important;
}

/* ===== MOBILE CTA BUTTONS ===== */
.mobile-cta {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    width: 100%;
    padding: 0 0.5rem;
}

.mobile-cta .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background: linear-gradient(145deg, #25d366, #128c7e);
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25),
                0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 6px rgba(255,255,255,0.7);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.8);
}

.whatsapp-float:hover i {
    text-shadow: 0 0 10px rgba(255,255,255,1);
    transform: rotate(10deg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.82rem;
        padding: 0.3rem 0.15rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-cta {
        gap: 0.6rem;
    }
    
    .language-translator {
        margin-right: 0.6rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .phone-landline {
        display: none;
    }
    
    .nav-phone span {
        display: none;
    }
    
    .nav-phone {
        padding: 0.4rem;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .logo-img {
        height: 55px;
    }
    
    /* Hide Desktop Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 70px 1.5rem 1.5rem;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 0.9rem 0;
        font-size: 0.95rem;
        width: 100%;
        color: var(--text-dark);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        color: var(--secondary-color);
        background: none;
    }
    
    .nav-link.active {
        color: var(--secondary-color);
        font-weight: 600;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 8px;
        padding: 0.9rem 1rem !important;
        margin: 0.2rem 0;
    }
    
    /* Hide desktop CTA on mobile */
    .nav-cta {
        display: none;
    }
    
    /* Show Hamburger */
    .hamburger {
        display: flex;
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--secondary-color);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--secondary-color);
    }
    
    /* Mobile CTA Buttons */
    .mobile-cta {
        display: flex;
    }
    
    /* Language Translator Hide on Mobile */
    .language-translator {
        display: none;
    }
    
    /* Phone Container Hide on Mobile */
    .nav-phone-container {
        display: none;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 100px 0 60px;
        background-position: center top;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-hero .hero-content p {
        font-size: 1rem;
        margin: 0 auto;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 260px;
        padding: 65px 1rem 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    .mobile-cta {
        gap: 0.6rem;
    }
    
    .nav-cta .cta-btn.primary {
        display: none;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 25px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .nav-menu {
        width: 100%;
    }
    
    .logo-img {
        height: 45px;
    }
}