:root {
    --primary-color: #8b947a; /* Olive Green from image */
    --secondary-color: #333333;
    --accent-color: #f9f9f7; /* Very light gray/white background */
    --bg-light: #ffffff;
    --bg-dark: #8b947a; /* For the "Make a Request" section */
    --text-dark: #222;
    --text-muted: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 95%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    background: #fff;
    padding: 5px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    padding: 10px 0;
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-top: 2px solid var(--primary-color);
}

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

.dropdown-content li {
    margin: 0 !important;
    display: block;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-links li a i {
    font-size: 0.7rem;
    margin-left: 5px;
}

.social-icons-header {
    display: flex;
    gap: 15px;
}

.social-icons-header a {
    color: #000;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons-header a:hover {
    color: var(--primary-color);
}

.btn-book-nav {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
    margin-left: 20px;
}

.btn-book-nav:hover {
    background-color: #7a826a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Section Headings */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    font-weight: 400;
}

.section-title .flourish {
    display: block;
    margin-top: 10px;
}

.section-title .flourish img {
    height: 30px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    text-align: center;
}

.service-item {
    padding: 20px;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-item:hover .service-icon i {
    transform: translateY(-5px) scale(1.1);
}

.service-icon img {
    height: 50px;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #555;
}

.service-item p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 100px 0;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.testimonial-content {
    flex: 1.2;
    padding: 20px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.couple-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.testimonial-image {
    flex: 0.8;
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--accent-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Mini Counter inside Testimonials */
.counter-mini {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.counter-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.counter-item .counter-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #333;
}

.counter-item .counter-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    text-align: left;
    width: auto;
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column-reverse;
        height: auto;
        gap: 30px;
        text-align: center;
    }
    
    .testimonial-slider {
        height: 650px;
    }

    .testimonial-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .testimonial-image img {
        border-radius: 50%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
}

.menu-toggle {
    display: none;
}

.mobile-only {
    display: none;
}

/* Gallery / Our Portfolio */
.gallery-section {
    background-color: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.index-gallery {
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
    margin-top: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Custom Masonry-like layout from image */
.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-2 { grid-column: 2 / 3; grid-row: 1 / 3; }
.item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-5 { grid-column: 3 / 4; grid-row: 2 / 3; }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: #fff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.view-more-container {
    text-align: center;
}

.btn-view-more {
    display: inline-block;
    padding: 10px 30px;
    background-color: #b0b8a3;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition);
}

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

/* Video Highlights */
.video-highlights {
    background-color: #fff;
}

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

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(139, 148, 122, 0.8); /* var(--primary-color) with opacity */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-item:hover .play-btn {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
}

.video-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Request Section & Form */
.request-section {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.request-container {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.request-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.request-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.request-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.request-form input, 
.request-form select, 
.request-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.request-form input:focus, 
.request-form select:focus, 
.request-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(139, 148, 122, 0.1);
}

.request-form textarea {
    height: 120px;
    resize: none;
}

.btn-submit-request {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-request:hover {
    background-color: #7a826a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-response.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-response.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Vendors Section */
.vendors-section {
    background-color: #fbfbfb;
    padding: 60px 0;
    overflow: hidden;
}

.vendors-slider {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.vendors-track {
    display: flex;
    width: calc(250px * 12); /* Width of all logos combined */
    animation: scroll 30s linear infinite;
}

.vendor-logo {
    width: 250px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vendor-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.vendor-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-col p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

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

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons-footer a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-info-item span {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #111;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #777;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Professional Info Section */
.professional-info {
    background-color: var(--accent-color);
    padding: 60px 0;
    margin-top: 40px;
}

.provider-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.provider-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.provider-details h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.provider-details p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.provider-socials {
    display: flex;
    gap: 20px;
}

.provider-socials a {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provider-socials a:hover {
    color: var(--primary-color);
}

.provider-contact {
    margin-top: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .provider-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .provider-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons-footer {
        justify-content: center;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: left;
    }
    .logo img {
        height: 60px;
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 10px 0;
        position: relative;
    }
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
        order: 1;
        flex: 1;
        text-align: left;
    }
    .logo {
        margin-bottom: 0;
        order: 2;
        flex: 0 0 auto;
        text-align: center;
        max-width: 50%;
    }
    .social-icons-header {
        display: none;
    }
    /* Add a spacer for the right side to keep logo centered */
    .navbar::after {
        content: "";
        flex: 1;
        order: 3;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    .nav-links.mobile-visible {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .nav-links.mobile-visible .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--accent-color);
        border: none;
        margin-top: 10px;
    }
    .nav-links.mobile-visible li.dropdown.active .dropdown-content {
        display: block;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .service-item {
        padding: 10px 5px;
    }
    .service-icon i {
        font-size: 2.2rem;
    }
    .service-item h3 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .service-item p {
        font-size: 0.75rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }
    .gallery-item {
        height: 180px !important;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: auto;
        grid-row: auto;
    }
    .request-form .form-row {
        flex-direction: column;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .video-thumbnail {
        height: 200px;
    }
    .video-item h3 {
        font-size: 1.2rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .about-col p, .footer-column ul li a, .contact-info-item span {
        font-size: 0.85rem;
    }
    footer {
        padding: 40px 0 0 0;
    }
    .footer-container {
        margin-bottom: 30px;
    }
    .footer-logo img {
        height: 60px;
    }

    .links-col {
        display: none;
    }

    /* Hero & Page Header Mobile Adjustments */
    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .hero-content p {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .page-header {
        padding: 60px 0 !important;
    }

    .page-header h1 {
        font-size: 1.6rem !important;
        letter-spacing: 3px !important;
    }

    .page-header p {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-map {
        min-height: 400px;
    }
}
