:root {
    --primary: #1B3B2F;
    /* Deep Green from logo */
    --primary-dark: #12261E;
    --primary-light: #4A7061;
    --secondary: #D4AF68;
    /* Gold/Tan from logo */
    --dark: #2d3436;
    --darker: #1A2621;
    /* Slightly greenish dark */
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #b2bec3;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    /* Using Outfit for body too for modern look */

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);

    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--darker);
    color: var(--white);
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.section-padding {
    padding: 5rem 0;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    /* Adjust based on preference */
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
}

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

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; /* Center the content vertically */
}

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

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide-bg {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.slider-dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover, 
.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    margin-left: 0;
    padding-top: 4rem;
    /* Align left */
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    gap: 1rem;
}

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

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
}

.icon-box img {
    width: 50%;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--darker);
}

/* About */
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .count {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.sub-title {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content .content-text {
    color: #636e72;
    margin-bottom: 2rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
}

.service-icon img {
    filter: brightness(0) invert(1);
    /* Make white for dark bg */
}

/* Bio / Team */
.team-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 6px solid var(--light);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info .sub-title {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.team-desc {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.team-desc p {
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-card {
        padding: 2.5rem 1.25rem;
    }

    .team-desc {
        text-align: center;
        font-size: 1rem;
    }

    .team-photo {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }

    .team-info h3 {
        font-size: 1.5rem;
    }
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content .inner-content {
    padding: 0 1.5rem 1.5rem;
    color: #636e72;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Contact */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #eee;
    color: var(--dark);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.map-link {
    display: block;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.site-footer {
    padding: 5rem 0 3rem;
    background-color: var(--darker);
    color: rgba(255, 255, 255, 0.7);
}

.col-footer {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-footer {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.site-footer h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 0.9rem;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 2rem;
        text-align: center;
    }

    .col-footer {
        margin-bottom: 3rem;
    }

    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-logo {
        margin-bottom: 1.5rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .hero-content h1 {
        /* handled by clamp */
    }

    .bio-image {
        margin-bottom: 2rem;
    }

    .row.flex-row-reverse {
        flex-direction: column-reverse;
    }

    .about-image {
        margin-bottom: 3rem;
    }

    .bio-content {
        margin-bottom: 3rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-slide-bg {
        background-position: center 20%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Section padding */
    .section-padding {
        padding: 3rem 0;
    }

    /* Headings */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    /* Grid columns stack on mobile */
    .col-md-5,
    .col-md-6,
    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-content h2 {
        font-size: 1.5rem;
    }

    /* Bio section */
    .bio-image::before {
        display: none;
        /* Remove decorative border frame on mobile */
    }

    /* Contact */
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .map-column {
        min-height: 300px;
    }

    /* Header */
    .logo img {
        height: 40px;
    }

    .container {
        padding: 0 1rem;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100VH;
    background: var(--white);
    z-index: 999;
    padding: 5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Main Contact Section */
#contact {
    position: relative;
    /* Default padding is fine or re-add section-padding if removed */
}

/* Map Column */
.map-column {
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.map-column iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info {
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .map-column {
        min-height: 300px;
    }
}