/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #f9f9f9;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    /* Light Mode Default Colors */
    --bg-color: #fff;
    --bg-secondary-color: #ecf0f1;
    --text-primary-color: #333;
    --text-secondary-color: #555;
    --header-bg-color: #fff;
    --footer-bg-color: #2c3e50;
    --footer-text-color: #ecf0f1;
    --footer-link-color: #fff;
    --footer-link-hover-color: var(--secondary-color);
    --card-bg-color: #fff;
    --button-bg-color: var(--secondary-color);
    --button-text-color: #fff;
    --button-border-color: var(--secondary-color);
    --button-hover-bg-color: transparent;
    --button-hover-text-color: var(--secondary-color);
    --button-secondary-bg-color: transparent;
    --button-secondary-text-color: var(--secondary-color);
    --button-secondary-border-color: var(--secondary-color);
    --button-secondary-hover-bg-color: var(--secondary-color);
    --button-secondary-hover-text-color: #fff;
    --primary-heading-color: #2c3e50;
    --service-icon-bg: var(--light-color);
    --service-icon-color: var(--secondary-color);
    --testimonial-bg: #fff;
    --testimonial-author-text: #555;
    --cta-bg-image: url('../images/cta-bg.jpg'); /* Keep existing or define new for dark */
    --cta-text-color: #fff;
    --page-banner-bg-image: ; /* To be set by individual pages */
    --page-banner-text-color: #fff;
    --portfolio-overlay-bg: rgba(44, 62, 80, 0.8);
    --portfolio-overlay-text: #fff;
    --input-bg-color: #fff;
    --input-text-color: #333;
    --input-border-color: #ccc;
}

.dark-mode {
    --bg-color: #1a1a1a; /* Darker background */
    --bg-secondary-color: #2c2c2c; /* Slightly lighter dark background for sections */
    --text-primary-color: #f0f0f0; /* Light text */
    --text-secondary-color: #c0c0c0; /* Lighter secondary text */
    --header-bg-color: #000000; /* CHANGED to pure black */
    --footer-bg-color: #1e1e1e;
    --footer-text-color: #d0d0d0;
    --footer-link-color: #bbb;
    --footer-link-hover-color: var(--secondary-color); /* Keep secondary for accent */
    --card-bg-color: #2c2c2c;
    --button-bg-color: var(--secondary-color); /* Keep for consistency */
    --button-text-color: #fff;
    --button-border-color: var(--secondary-color);
    --button-hover-bg-color: #4aa5e3; /* Slightly lighter blue for hover */
    --button-hover-text-color: #fff;
    --button-secondary-bg-color: transparent;
    --button-secondary-text-color: var(--secondary-color);
    --button-secondary-border-color: var(--secondary-color);
    --button-secondary-hover-bg-color: var(--secondary-color);
    --button-secondary-hover-text-color: #fff;
    --primary-heading-color: #e0e0e0; /* Lighter headings */
    --service-icon-bg: #3a3a3a;
    --service-icon-color: var(--secondary-color);
    --testimonial-bg: #2c2c2c;
    --testimonial-author-text: #b0b0b0;
    --cta-bg-image: url('../images/cta-bg-dark.jpg'); /* Example: if you have a dark version */
    --cta-text-color: #f0f0f0;
    --page-banner-text-color: #f0f0f0; /* For text on banners */
    --portfolio-overlay-bg: rgba(20, 20, 20, 0.85);
    --portfolio-overlay-text: #f0f0f0;
    --input-bg-color: #333;
    --input-text-color: #f0f0f0;
    --input-border-color: #555;

    /* Update specific component colors for dark mode */
    --primary-color: #5fa8d3; /* Lighter primary for dark mode if needed */
    --secondary-color: #65c0ff; /* Lighter secondary */
    --accent-color: #ff6b6b; /* Lighter accent */
    --light-color: #3a3a3a; /* Darker 'light' color */
    --dark-color: #e0e0e0; /* Lighter 'dark' color */
    --text-color: var(--text-primary-color); /* General text color */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: 2px solid var(--button-border-color);
}

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

.btn-secondary {
    background-color: var(--button-secondary-bg-color);
    color: var(--button-secondary-text-color);
    border: 2px solid var(--button-secondary-border-color);
}

.btn-secondary:hover {
    background-color: var(--button-secondary-hover-bg-color);
    color: var(--button-secondary-hover-text-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    color: #fff;
    z-index: 1000;
    padding: 1rem;
    display: none; /* Hidden by default, shown with JS */
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--light-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
}

/* Header */
.site-header {
    background-color: var(--header-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent logo container from shrinking too much */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-heading-color);
    margin-right: 15px;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.logo img {
    /* Start with a flexible height and width */
    height: auto; 
    width: auto;
    /* Set a max-height for larger screens */
    max-height: 80px; /* Adjusted from 90px to give a bit more room */
    max-width: 100%; /* Ensures it doesn't overflow its container */
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
}

.business-name {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.business-name h1 {
    color: var(--primary-heading-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: var(--text-primary-color);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary-color);
    margin: 5px 0;
    border-radius: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    margin-top: 80px; /* Account for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2; /* Ensure it's behind the video if video plays, and also behind hero-content */
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Should be above .hero::before if it has a poster and plays */
}

.hero-content {
    position: relative; /* Ensures z-index stacking context */
    z-index: 1; /* Above video and ::before */
    width: 100%;
    height: 100%; /* Fill the .hero container */
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--text-light);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.service-card {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--service-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--service-icon-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: var(--text-secondary-color);
}

.read-more {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 5rem 0;
    background-color: var(--bg-secondary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--portfolio-overlay-bg);
    color: var(--portfolio-overlay-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
    text-align: center;
}

.portfolio-overlay h3 {
    color: var(--portfolio-overlay-text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-overlay span, .portfolio-overlay p {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

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

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-item {
    background-color: var(--testimonial-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary-color);
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-heading-color);
}

.author-info p {
    color: var(--testimonial-author-text);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--cta-bg-image) no-repeat center center/cover;
    color: var(--cta-text-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

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

.footer-info {
    max-width: 350px;
}

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

.footer-logo img {
    width: 60px;   /* Set a fixed width */
    height: 60px;  /* Set a fixed height to make it square */
    object-fit: contain; /* Ensures logo fits within bounds without cropping, maintaining aspect ratio */
    margin-bottom: 1rem;
}

.dark-mode .footer-logo img {
    /* Example if you need to adjust the logo for dark mode, e.g., if it's a dark logo on a dark background */
    /* filter: brightness(0) invert(1); */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-links a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--footer-link-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--footer-link-color);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--footer-link-color);
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--footer-link-color);
}

.footer-contact a:hover {
    color: var(--footer-link-hover-color);
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--footer-link-color);
    margin-left: 1rem;
}

.footer-legal a:hover {
    color: var(--footer-link-hover-color);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Theme Toggle Button */
.theme-toggle-button {
    background: none;
    border: none;
    color: var(--text-primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.theme-toggle-button:hover {
    color: var(--secondary-color);
}

.theme-toggle-button .fa-sun {
    display: none;
}

.dark-mode .theme-toggle-button .fa-sun {
    display: inline-block;
}

.dark-mode .theme-toggle-button .fa-moon {
    display: none;
}

/* Update page-specific banner text colors if necessary */
.dark-mode .page-banner {
    color: var(--page-banner-text-color);
}
.dark-mode .banner-content h1,
.dark-mode .banner-content p {
    color: var(--page-banner-text-color);
}

/* Contact Form specific input styling */
.dark-mode .form-group input,
.dark-mode .form-group textarea {
    background-color: var(--input-bg-color);
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
    color: var(--text-secondary-color);
}

/* Additional dark mode styles for contact form elements */
.dark-mode .contact-section {
    background-color: var(--bg-color); /* Ensure section background is dark */
}

.dark-mode .contact-form-container {
    background-color: var(--card-bg-color);
    padding: 2rem; /* Assuming it has padding, adjust if needed or inherit */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.dark-mode .contact-form-container h2 {
    color: var(--primary-heading-color);
}

.dark-mode .form-group label {
    color: var(--text-primary-color);
}

.dark-mode .form-group select {
    background-color: var(--input-bg-color);
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    padding: 0.75rem;
}

.dark-mode .checkbox-label .checkbox-text {
    color: var(--text-secondary-color);
}

/* Ensure specific image backgrounds common on pages are handled */
.dark-mode .about-section:nth-child(even),
.dark-mode .video-gallery {
    background-color: var(--bg-secondary-color);
}

/* Services Page - Specific Card Backgrounds */
.dark-mode .service-item-page {
    background-color: var(--card-bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .service-item-page .service-icon-page {
    background-color: var(--service-icon-bg);
    color: var(--service-icon-color);
}

/* Services Text - Make brighter in dark mode */
.dark-mode .service-content p,
.dark-mode .service-card p,
.dark-mode .feature-item p,
.dark-mode .qualifications-content p {
    color: #f8f9fa;
}

/* Portfolio Page - Category Buttons */
.dark-mode .category-btn {
    background-color: var(--bg-secondary-color);
    color: var(--text-primary-color);
}
.dark-mode .category-btn:hover, .dark-mode .category-btn.active {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Portfolio Page - Details Popup */
.dark-mode .details-container {
    background-color: var(--bg-color);
}
.dark-mode .details-header h2,
.dark-mode .details-info h3,
.dark-mode .project-meta .meta-item h4 {
    color: var(--primary-heading-color);
}
.dark-mode .details-header p,
.dark-mode .details-info,
.dark-mode .project-meta .meta-item p {
    color: var(--text-secondary-color);
}
.dark-mode .project-meta {
    background-color: var(--bg-secondary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        height: 70px;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--header-bg-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .nav-links {
        background-color: var(--header-bg-color);
    }

    .nav-links.active {
        max-height: 400px;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .business-name h1 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .site-header .container {
        height: 60px;
    }
    .logo img {
        max-height: 50px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-item {
        width: 100%;
    }
    
    .business-name {
        display: none;
    }
}

/* Splash Screen */
.splash-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeOut 2s ease-in-out 2s forwards;
}

.splash-screen img {
    width: 80%;
    max-width: 1200px;
    height: auto;
    opacity: 1;
}

@media (max-width: 768px) {
    .splash-screen img {
        width: 90%;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
/* End of Splash Screen styles */

/* Add media queries for responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.center-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Styles for .feature-item in dark mode */
.dark-mode .feature-item {
    background-color: var(--card-bg-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); /* Slightly adjusted shadow for dark bg */
}

.dark-mode .feature-item h4 {
    color: var(--secondary-color); /* Or a lighter version if secondary-color is too dark on card-bg */
}

.dark-mode .feature-item p {
    color: var(--text-secondary-color);
} 