/* Variables & Color Palette */
:root {
    --primary: #00695C; /* Sage/Teal Green */
    --primary-dark: #004D40;
    --accent: #FF8A65; /* Soft Peach/Orange */
    --accent-dark: #E67A5A;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --bg-white: #FFFFFF;
    --bg-soft: #F9FBFA;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --white: #ffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Rose Petals Decoration */
.petal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.rose-petal {
    position: absolute;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #FF8A65, #E67A5A);
    border-radius: 50% 10% 50% 50%;
    filter: blur(1px);
    opacity: 0.1;
    animation: float-rose 25s infinite linear;
}

@keyframes float-rose {
    0% { transform: translate(0, 0) rotate(0); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translate(-100px, -100vh) rotate(360deg); opacity: 0; }
}

.p1 { bottom: -50px; left: 10%; animation-delay: 0s; }
.p2 { bottom: -50px; left: 50%; animation-delay: -7s; }
.p3 { bottom: -50px; right: 20%; animation-delay: -15s; }

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(0, 105, 92, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(0, 77, 64, 0.75);
    box-shadow: var(--shadow);
}

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

.logo img {
    height: 48px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 38px;
}

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

.nav-links li a {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dropdown-content li a {
    color: var(--text-main);
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--bg-white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 12px !important;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 20px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li a {
    padding: 10px 25px;
    display: block;
    text-transform: capitalize !important;
    font-weight: 400 !important;
}

.arrow-svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow-svg {
    transform: rotate(180deg);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 105, 92, 0.2);
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 105, 92, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 38px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary);
}

/* CTA Banner (Shared) */
.cta-banner {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px;
    border-radius: 24px;
    text-align: center;
    color: var(--bg-white);
}

.cta-card h2 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 20px; }
.cta-btns { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 100px;
    margin-bottom: 80px;
}

.footer-logo {
    /*height: 45px;*/
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.social-circlep {
    width: 45px;
    height: 45px;
   
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 77, 64, 0.75);
}

.social-circle:hover { background: var(--primary); border-color: var(--primary); }
.social-circlep:hover { border-color: var(--primary); }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.link-col h6 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 25px;
}

.link-col ul li { margin-bottom: 15px; }

.link-col ul li a {
    color: #999;
}

.link-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
}

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 30px; height: 3px; background: var(--white); border-radius: 3px; }

/* Inner Hero (Shared across subpages) */
.inner-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px; /* Offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 77, 64, 0.8), rgba(0, 0, 0, 0.4));
}

.inner-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: var(--transition);
}

.language-selector:hover .lang-current {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    min-width: 180px;
    padding: 10px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 4px;
    z-index: 1100;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main) !important;
    text-transform: none !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
}

.lang-dropdown li a:hover {
    background: var(--bg-soft);
    color: var(--primary) !important;
}

.flag-icon {
    font-size: 1.2rem;
}

/* Responsive Common */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    .navbar { background: rgba(0, 105, 92, 0.9); padding: 10px 0; }
    .navbar.scrolled { background: rgba(0, 77, 64, 0.95); }
    .nav-links li a { color: var(--white) !important; }
    .menu-toggle span { background: var(--white); }
    
    .logo img { height: 40px; }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(0, 77, 64, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: var(--transition);
        z-index: 1000;
        backdrop-filter: blur(15px);
    }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 25px; width: 100%; }
    .menu-toggle { display: flex; z-index: 1001; }

    /* Mobile Dropdown Adjustments */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 5px 0;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown.active .arrow-svg {
        transform: rotate(180deg);
    }

    .dropdown-content li a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 14px !important;
        padding: 8px 0;
    }

    /* Mobile Language Selector Adjustments */
    .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        background: transparent;
        box-shadow: none;
        width: 100%;
        padding: 5px 0;
    }

    .language-selector.active .lang-dropdown {
        display: block;
    }

    .lang-dropdown li a {
        justify-content: center;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .lang-current {
        border-color: rgba(255, 255, 255, 0.2);
        margin: 0 auto;
        display: inline-flex;
    }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    
    .cta-card { padding: 40px 20px; border-radius: 0; }
    .cta-card h2 { font-size: 2rem; }
    .cta-btns { flex-direction: column; gap: 15px; }

    .inner-hero { height: 40vh; }
    .hero-title { font-size: 2.2rem; }
    .language-selector { margin-top: 10px; }
}
