/* Global Variables */
:root {
    --primary-color: #ffffff;
    --secondary-color: #cccccc;
    --accent-color: #3498db;
    --accent-orange: #ff7e47; /* Updated to Studio Iqon orange */
    --accent-gradient: linear-gradient(90deg, #ffffff 0%, #ff7e47 100%);
    --background-color: #050505; /* Darker background */
    --surface-color: #0f0f0f;
    --text-color: #ffffff;
    --text-muted: #888888;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-speed), padding var(--transition-speed);
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Adjust based on logo aspect ratio */
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Reviews Marquee */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    display: block !important; /* Override previous display:none */
    width: 350px;
    background-color: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    flex-shrink: 0;
    animation: none !important; /* Remove fade animation */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 2)); } /* Assuming duplicated content for seamless loop */
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: #f1c40f;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--secondary-color);
    font-style: normal;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 5px;
}

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

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

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

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface-color);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-height);
    /* Remove background-color to allow shader to show through if any */
    background-color: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove the radial gradient that blocks the stars */
    background: transparent; 
    z-index: -2;
}

.shader-animation {
    position: fixed; /* Use fixed position to cover entire viewport and stay during scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3; /* Place behind everything */
    pointer-events: none;
}

/* Ensure sections have transparent backgrounds so fixed stars show through */
.services, .about-section, .reviews, .contact, .opening-hours, .gallery-section {
    position: relative;
    z-index: 1;
    background-color: transparent !important; /* Force transparency */
}

/* Add semi-transparent backgrounds to content containers to ensure readability */
.service-card, .review-card, .contact-form-container, .accordion-item, .about-image, .map-container {
    background-color: rgba(15, 15, 15, 0.85) !important; /* Dark semi-transparent */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Specific fix for alternating section backgrounds if present */
.services {
    /* was --background-color */
}

.about-section {
   /* was --background-color */
}

.contact {
   /* was --surface-color */
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn Up 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1.1;
    word-break: break-word; /* Prevent overflow */
    hyphens: auto; /* Add hyphens if needed */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem; /* Significantly smaller on mobile */
    }
}

.hero-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--accent-orange); /* Orange text */
    text-transform: uppercase;
}

.hero-message {
    display: none; /* Hidden in new design */
}

.service-highlights {
    display: none; /* Hidden in new design */
}

/* ... highlights removed ... */

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--accent-orange);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Fully rounded */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 126, 71, 0.4); /* Orange glow */
    background-color: #ff9f76;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.section-subtitle {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-orange);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.experience-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--background-color); /* Match dark background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    background-color: #0a0a0a; /* Slightly lighter than bg */
    border-radius: 12px;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-orange); /* Orange border on hover? Or static? Image shows dark cards. */
}

.service-image {
    height: 280px; /* Taller image area */
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align left as per image */
    text-align: left;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.service-subtitle-text {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: none; /* "Starlight Headliners" is mixed case in image */
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.more-info-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px; /* Rounded pill */
    text-transform: none; /* "Meer Info" is Title Case in image */
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
    text-align: center;
    margin-top: auto;
}

.service-card:hover .more-info-btn {
    background-color: var(--accent-orange);
    color: #fff;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: var(--background-color);
    text-align: center;
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    min-height: 200px;
}

.review-card {
    display: none;
    padding: 20px;
    animation: fadeIn 0.5s;
}

.review-card.active {
    display: block;
}

.review-stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.carousel-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

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

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

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

.review-platforms {
    margin-top: 40px;
}

.platforms-title {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.3s;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--surface-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3, .contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--background-color);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.contact-form-container {
    background: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background-color: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: var(--font-main);
    border-radius: 5px;
    transition: border-color var(--transition-speed);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--surface-color);
    color: var(--text-color);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.submit-btn:hover {
    background-color: #e0e0e0;
}

/* Opening Hours */
.opening-hours {
    padding: 60px 0;
    background-color: var(--background-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.hours-item .day {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.hours-item .time {
    color: var(--secondary-color);
}

.hours-item .time.closed {
    color: #e74c3c;
}


/* Accordion Styles - Native HTML Details/Summary */
.accordion-container {
    max-width: 800px;
    margin: 40px auto;
}

details.accordion-item {
    background-color: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

details.accordion-item:hover {
    border-color: var(--accent-orange);
}

summary.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none; /* Hides default triangle */
    outline: none;
}

/* Hide default marker in Webkit */
summary.accordion-header::-webkit-details-marker {
    display: none;
}

summary.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
details[open] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animation for opening */
details[open] .accordion-content {
    animation: slideDown 0.3s ease-out;
}

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

.accordion-body {
    padding: 20px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Detail Page Specifics */
.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer {
    padding: 60px 0 30px;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition-speed);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section .contact-info a {
    color: var(--text-muted);
}

.footer-section .contact-info a:hover {
    color: var(--accent-orange);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: fill var(--transition-speed);
}

.footer-social a:hover svg {
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none; /* Mobile menu would need JS to toggle */
    }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .stats-section {
        gap: 40px;
    }
}
