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

:root {
    --primary-color: #3b4218; /* Dark Olive Green */
    --primary-dark: #2a2e11;
    --accent-color: #c5a059; /* Gold */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.header .logo img {
    max-height: 300px;
    width: auto;
    margin-bottom: 10px;
}

.nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-color);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    display: flex;
    min-height: 80vh;
    background-color: var(--primary-color);
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text h3, .about-features h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-text h3::after, .about-features h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mv-card {
    background-color: #f7f8f3;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 3px solid var(--accent-color);
}

.mv-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h4 i {
    color: var(--accent-color);
}

.mv-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.values-list li {
    background-color: #fafafa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.values-list strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.values-list strong i {
    color: var(--accent-color);
}

.values-list span {
    font-size: 0.95rem;
    color: #666;
    display: block;
    margin-left: 28px;
}

.we-cater {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.we-cater h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.we-cater p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* Area Of Service */
.area-of-service {
    padding: 80px 0;
    background-color: #fcfcfc;
    text-align: center;
}

.aos-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.aos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.aos-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.aos-item:hover {
    transform: translateY(-10px);
}

.aos-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.aos-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .aos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .aos-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-carousel {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    /* Optional scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0,0,0,0.1);
}

.services-carousel::-webkit-scrollbar {
    height: 8px;
}
.services-carousel::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}
.services-carousel::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 4px;
}

.services-track {
    display: flex;
    gap: 30px;
    padding: 0 10px;
}

.service-card {
    flex: 0 0 350px;
    background-color: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    white-space: normal; /* To counter nowrap on parent */
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
    color: var(--white);
    text-align: center;
}

.service-info h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    min-height: 40px;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    min-height: 60px;
}

.price-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--accent-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #bbb;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-value.multi {
    font-size: 1.1rem;
    line-height: 1.2;
}

.price-value small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #ddd;
}

.price-sub {
    display: block;
    font-size: 0.85rem;
    color: #ddd;
    margin-top: 5px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #f7f8f3;
}

.pricing-title {
    color: var(--primary-dark);
    display: inline-block;
    margin-bottom: 3rem;
}

.pricing-title span {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.pricing-table-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    background-color: var(--white);
    margin-top: 50px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.pricing-table th, .pricing-table td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
    vertical-align: middle;
}

.pricing-table td:not(:first-child) {
    font-weight: 500;
}

.pricing-table th {
    background-color: var(--white);
    padding: 40px 20px 30px;
    vertical-align: top;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-table th:first-child {
    text-align: left;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    vertical-align: middle;
    padding-left: 30px;
    border-top-left-radius: 20px;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 700;
    background-color: #fafafa;
    color: var(--primary-dark);
    border-right: 1px solid rgba(0,0,0,0.06);
    font-size: 1.1rem;
    padding-left: 30px;
    letter-spacing: 0.5px;
}

.pricing-table tr:hover td {
    background-color: #fcfcfc;
}

.pricing-table tr:hover td:first-child {
    background-color: #f0f2e9;
    color: var(--primary-color);
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-image {
    width: 90%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.pricing-table th:hover .plan-image {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.plan-price small {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    color: #999;
}



/* Pricing Footer Row (Buttons) */
.pricing-footer-row td {
    padding-top: 30px;
    padding-bottom: 40px;
    border-bottom: none;
}

.pricing-table tr:last-child:hover td {
    background-color: transparent;
}

.plan-btn {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-table .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Unified Cost Calculator & Details */
.unified-calculator-container {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    border-top: 5px solid var(--accent-color);
    text-align: left;
}

.calc-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.details-heading {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    text-transform: uppercase;
}

.materials-list {
    list-style: none;
    padding: 0;
}

.materials-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    background-color: #fafafa;
}

.materials-list li:nth-child(even) {
    background-color: #fff;
}

.materials-list li strong {
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 140px;
}

.materials-list li:last-child {
    border-bottom: none;
}

.plan-details {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-details.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .calc-grid-layout {
        grid-template-columns: 1fr;
    }
}

.calc-title {
    text-align: center;
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.calc-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.calc-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.calc-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
}

.tab-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    border-radius: 0;
    /* remove white background from generated images if possible, or use mix-blend-mode */
    mix-blend-mode: multiply;
}

.tab-text-box {
    background: linear-gradient(to bottom, #383838, #181818);
    color: var(--white);
    width: 100%;
    padding: 20px 10px 15px;
    border-radius: 0 0 6px 6px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.tab-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.9;
}

.calc-tab:hover {
    transform: translateY(-5px);
}

.calc-tab:hover .tab-image {
    transform: scale(1.08);
}

.calc-tab.active .tab-text-box {
    background: linear-gradient(to bottom, #4a5c31, #283618); /* Using explicit olive green gradient to match image */
    box-shadow: 0 8px 20px rgba(74, 92, 49, 0.4);
}

.calc-table-wrapper {
    overflow-x: auto;
}

.calc-table {
    width: 100%;
    border-collapse: collapse;
}

.calc-table th, .calc-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
}

.calc-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.calc-input {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.calc-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.calc-rate, .calc-cost {
    font-weight: 600;
}

.calc-table tfoot td {
    padding-top: 25px;
    border-bottom: none;
}

.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-grid a {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid a::after {
    content: '\f0b2'; /* FontAwesome expand arrows */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 46, 17, 0.8); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059; /* Accent color */
    font-size: 3.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.5);
    pointer-events: none;
}

.gallery-grid a:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.gallery-grid a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 2;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.contact-form p {
    margin-bottom: 25px;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
}

.contact-details {
    flex: 1;
    padding: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.contact-details h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--accent-color);
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 0 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--accent-color);
}

.footer-divider {
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    margin: 20px auto;
    width: 80%;
}

.footer-logo {
    max-height: 160px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 4px; /* Optional, just in case */
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    .hero-image {
        min-height: 400px;
    }
    .services-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav ul {
        flex-wrap: wrap;
    }
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .hero-content {
        padding: 40px 20px;
    }
}

/* Floating Socials */
.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    color: white;
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.float-btn.youtube {
    background-color: #FF0000;
}

.float-btn.call {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .floating-socials {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: center;
    animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #888;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover, .close-btn:focus {
    color: var(--primary-color);
}

#modalDetails ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 15px;
    line-height: 1.8;
}

/* Multi-column Footer CSS */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-top h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-top ul {
    list-style: none;
    padding: 0;
}
.footer-top ul li {
    margin-bottom: 12px;
}
.footer-top ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-top ul a:hover {
    color: var(--accent-color);
}
.footer-contact p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonials-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

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

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
}

.testimonial-author-info {
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.testimonial-stars {
    color: #fbbc04;
    font-size: 0.9rem;
}

.testimonial-google-icon {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: #4285F4;
    border: 1px solid #dadce0;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.google-review-btn:hover {
    background-color: #f8f9fa;
}

.google-review-btn img {
    width: 18px;
    height: 18px;
}

