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

:root {
    --primary-color: #7c9082;
    --primary-light: #9bb1a3;
    --secondary-color: #d4a373;
    --accent-color: #fefae0;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-overlay: rgba(255, 255, 255, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: url('../bamboo-greyed.avif') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

h1,
h2,
h3,
.brand-name {
    font-family: 'Playfair Display', serif;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 100px;
    width: auto;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    /* Reduced gap to fit more items */
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-btn::after {
    content: 'Menu';
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    height: calc(100vh - 100px);
    min-height: 600px;
    overflow: hidden;
    position: relative;
    background: var(--bg-overlay);
}

.hero-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 5%;
    background: var(--glass-bg);
}

.content-wrapper {
    max-width: 600px;
    animation: fadeInLeft 1s ease;
}

.hero-split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-split h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--primary-color);
}

.hero-split h1 .highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.hero-split p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

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

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.5s both;
}

.floating-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.floating-badge strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.floating-badge span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(124, 144, 130, 0.3);
}

.btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 144, 130, 0.4);
}

/* Aspect Ratio Utilities */
.aspect-square {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.aspect-video {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.aspect-portrait {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Section Styling */
section.content {
    padding: 80px 0;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p,
.footer-section li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.social-link {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.glass-panel,
.service-card,
.contact-info-card,
.pricing-table tr {
    transition: var(--transition);
}

.pricing-table tr:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

/* Button Pulse Animation */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container img {
        height: 60px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .hero-split {
        flex-direction: column-reverse;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .hero-split-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px 60px;
        min-height: auto;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-split-image {
        display: none;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

    .floating-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 15px;
    }

    .nav-links {
        display: none;
        /* Will handle with JS */
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 50px 20px;
    transition: 0.4s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul li {
    margin-bottom: 25px;
}

.mobile-nav ul li a {
    font-size: 1.1rem;
    font-weight: 500;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.active {
    display: block;
}