/* Global Styles & Variables */
:root {
    --color-primary: #1B4D3E;
    /* Deep Green */
    --color-primary-dark: #12352a;
    --color-secondary: #F9F7F2;
    /* Light Beige */
    --color-accent: #C5A059;
    /* Soft Gold */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-light-gray: #f4f4f4;
    --color-success: #25D366;
    /* WhatsApp/Call color */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    display: block;
    /* Removed flex */
    text-align: center;
    margin: 0 auto var(--spacing-sm);
    /* Center block if needed and spacing */
    font-size: 2.5rem;
    /* Ensure hierarchy */
    line-height: 1.2;
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.nav-link {
    font-weight: 600;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav .btn {
    margin-left: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    height: auto;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-top: 0;
    padding-top: 140px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 77, 62, 0.7);
    /* Primary color with opacity */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-badge i {
    color: var(--color-accent);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Differentiators Section */
.differentiators {
    background-color: var(--color-secondary);
}

.differentiators-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diff-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.diff-list i {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.diff-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.diff-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team {
    background-color: var(--color-secondary);
    /* Light background for section contrast */
    padding-top: var(--spacing-lg);
    /* Reduced top padding */
    padding-bottom: var(--spacing-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-top: 1rem;
}

.team-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.team-card:hover .team-icon {
    transform: scale(1.1);
    color: var(--color-accent);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    height: 300px;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Feedbacks Section */
.feedbacks {
    background-color: var(--color-white);
}

.feedbacks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feedback-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feedback-item.reverse {
    flex-direction: row-reverse;
}

.feedback-image {
    flex: 1;
    max-width: 500px;
}

.feedback-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    /* No background images, so maybe add a subtle shadow or shape if needed, 
   but user said "just insert" the no-bg images. */
}

.feedback-content {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    box-shadow: none;
    /* Resetting previous shadow if any */
}

.feedback-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.author span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Location Section */
.location {
    background-color: var(--color-secondary);
    padding-bottom: 0;
    /* Map might sit flush or have padding */
}

.location-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
}

.location-content {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.address-text i {
    color: var(--color-accent);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-location {
    align-self: flex-start;
}

.location-map-visual {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-color: #e0e0e0;
}

/* Contact Section */
.contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern or slight texture could be added here */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* More space for info */
    gap: 4rem;
    align-items: center;
}

.contact-info-box {
    padding-right: 2rem;
}

.contact-info-box h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.1;
}

.contact-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
}

.contact-highlight {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.btn-call {
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 1.4rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid var(--color-white);
}

.btn-call:hover {
    transform: scale(1.05);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.assistance-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.social-links-minimal {
    display: flex;
    gap: 1.5rem;
}

.social-links-minimal a {
    color: var(--color-white);
    font-size: 1.3rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-links-minimal a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--color-accent);
}

.contact-form-box {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    /* Larger inputs */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.contact-form-box form {
    color: var(--color-text);
}

/* Footer */
.footer {
    background-color: #111;
    color: #888;
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin: 0 auto 1rem;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: var(--transition);
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .differentiators-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .feedback-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .feedback-item.reverse {
        flex-direction: column;
    }

    .feedback-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        /* Hide nav by default on mobile, toggle with JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        flex-direction: column;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav .btn {
        margin: 1rem 0 0;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 2rem;
    }

    .location-card {
        flex-direction: column;
    }

    .location-map-visual {
        min-height: 300px;
    }
}