/* =============================================
   GRIME PATROL - Professional Cleaning Website
   Complete CSS with Mobile Responsive Design
   ============================================= */

/* =============================================
   1. RESET & BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #242d2e;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

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

/* =============================================
   2. UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-white { color: white; }
.text-light { color: #bbb; }

.bg-light { background-color: #f8f9fa; }
.bg-green { background-color: #83c340; }
.bg-dark { background-color: #242d2e; color: white; }
.bg-primary { background-color: #83c340; color: white; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* =============================================
   3. TOP BAR WITH SOCIAL & QUOTE GROUP
   ============================================= */
.top-bar {
    background: #242d2e;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-info i {
    color: #83c340;
}

/* Social & Quote Group */
.social-quote-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

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

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

.social-links a:hover {
    background: #83c340;
    transform: translateY(-2px);
}

/* Top Quote Button */
.top-quote-button .btn-small {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    background: #83c340;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-quote-button .btn-small:hover {
    background: #72a937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(131, 195, 64, 0.3);
}

/* =============================================
   4. HEADER & NAVIGATION
   ============================================= */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 28px;
    color: #242d2e;
    margin-bottom: 0;
    line-height: 1;
}

.logo p {
    color: #83c340;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Desktop Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #242d2e;
    font-weight: 600;
    font-size: 14px;
    padding: 3px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #83c340;
    transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav li.active a {
    color: #83c340;
}

/* Desktop Dropdown - UPDATED FOR VERTICAL STACKING */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    /* UPDATED: Stack items vertically */
    display: flex;
    flex-direction: column;
     gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%; /* UPDATED: Full width */
}

.dropdown-menu a {
    display: block;
    width: 100%; /* UPDATED: Full width */
    box-sizing: border-box; /* UPDATED: Include padding in width */
    padding: 15px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
}


.dropdown-menu a:hover,
.dropdown-menu li.active a {
    background: #f8f9fa;
    color: #83c340;
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.header-cta .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 997;
    background: #83c340;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
    background: #72a937;
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: #ff6b6b;
}

.mobile-menu-toggle.active:hover {
    background: #ff5252;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #242d2e;
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 80px 30px 30px;
}

/* Mobile Nav Close Button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Links */
.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    color: white;
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav li.active > a:not(.mobile-dropdown-toggle) {
    color: #83c340;
    padding-left: 10px;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    cursor: pointer;
}

.mobile-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    padding: 12px 0 12px 20px;
    font-size: 14px;
}

.mobile-submenu a:hover,
.mobile-submenu li.active a {
    background: transparent;
    color: #83c340;
    padding-left: 25px;
}

/* =============================================
   MOBILE NAVIGATION UPDATES
   ============================================= */

/* Mobile Free Quote Button */
.mobile-free-quote {
    margin: 30px 0 20px;
    text-align: center;
    border: none;
}

.mobile-free-quote .btn {
    width: 100%;
    margin: 0;
    padding: 12px 20px;
}

/* Mobile Social Links in Nav */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: #83c340;
    transform: translateY(-3px);
}

/* =============================================
   5. BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #83c340;
    color: white;
}

.btn-primary:hover {
    background: #72a937;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 195, 64, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #242d2e;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =============================================
   6. HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: relative;
    height: 600px;
    background: #242d2e;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-size: cover;*/
    background-position: center;
    opacity: 0.7;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 120px 0;
    max-width: 800px;
}

.slide-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title { 
    color: white !important;
}

.slide-title .highlight {
    color: #83c340;
    display: block;
}

.slide-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: #83c340;
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.slider-dots .slick-dots {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-dots .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slider-dots .slick-dots li button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .slick-dots li.slick-active button {
    background: #83c340;
    transform: scale(1.2);
}

/* =============================================
   7. CONTENT SECTIONS
   ============================================= */
.content-section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    color: #242d2e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #83c340;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
}

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

.section-title-green h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-green h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #83c340;
}

.section-title-green p {
    color: #f5f5f5;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
}

/* =============================================
   8. FEATURES GRID
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    color: #83c340;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* =============================================
   9. SERVICE GRID - UPDATED WITH PHOTOS
   ============================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Image Area */
.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

/* Gradient overlay for better text visibility */
.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    z-index: 1;
}

/* Hover effect for images */
.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Individual service images with Unsplash URLs */
/* Carpet Cleaning */
.service-card:nth-child(1) .service-image {
    background-image: url('../images/carpet-cleaning.jpg');
}

/* Tile & Grout Cleaning */
.service-card:nth-child(2) .service-image {
    background-image: url('../images/tile-grout-cleaning.jpg');
}

/* Shower Restorations */
.service-card:nth-child(3) .service-image {
    background-image: url('../images/shower-restoration.jpg');
}

/* Hardwood Cleaning */
.service-card:nth-child(4) .service-image {
    background-image: url('../images/hardwood-cleaning.avif');
}

/* Upholstery Cleaning */
.service-card:nth-child(5) .service-image {
    background-image: url('../images/upholstery-cleaning.avif');
}

/* Commercial Cleaning */
.service-card:nth-child(6) .service-image {
    background-image: url('../images/commercial-cleaning.avif');
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #242d2e;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Responsive adjustments for service images */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* =============================================
   10. SERVICE AREAS GRID
   ============================================= */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-city {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.area-city:hover {
    background: rgba(131, 195, 64, 0.2);
    transform: translateY(-5px);
}

.area-city i {
    font-size: 24px;
    color: #83c340;
}

.area-city span {
    font-size: 18px;
    font-weight: 500;
}

/* =============================================
   11. PARALLAX SECTION
   ============================================= */
.parallax-section {
    /*
    background: linear-gradient(rgba(36, 45, 46, 0.85), rgba(36, 45, 46, 0.9)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    */
    background: linear-gradient(rgba(36, 45, 46, 0.85), rgba(36, 45, 46, 0.4)), url('../images/hardwood2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.parallax-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.parallax-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.highlight-text {
    color: #83c340;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
}

/* =============================================
   12. CERTIFICATIONS GRID
   ============================================= */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certification {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 48px;
    color: #83c340;
    margin-bottom: 20px;
}

.certification h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* =============================================
   13. CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #83c340 0%, #72a937 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #83c340;
}


/* =============================================
   FOOTER MOBILE CENTERING
   ============================================= */
@media (max-width: 768px) {
    /* Center footer social icons */
    .footer-social {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
    }
    
    /* Center service areas list */
    .areas-list {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    /* Center individual area links/span items */
    .areas-list a,
    .areas-list span:not(.area-note) {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center the surrounding areas note */
    .area-note {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 10px auto 0 !important;
    }
    
    /* Center the service areas heading */
    .service-areas h4 {
        text-align: center !important;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .areas-list {
        gap: 5px !important;
    }
    
    .areas-list a,
    .areas-list span:not(.area-note) {
        padding: 4px 8px !important;
        font-size: 12px !important;
    }
}



/* =============================================
   14. PAGE CONTENT STYLES
   ============================================= */
.page-content {
    margin: 0 auto;
}

.page-content h2, 
.page-content h3, 
.page-content h4 {
    color: #242d2e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.8;
}

/* Service Highlight Box */
.service-highlight {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-highlight.bg-light {
    background: #e9f7e9;
}

.service-highlight p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-highlight i {
    color: #83c340;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Certification Badges */
.certification-badges {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    background: #242d2e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {

    border-radius: 10px;
    margin: 40px 0;
}

.process-section.bg-dark {
    background: #242d2e;
    color: white;
    padding: 25px;
}

.process-section.bg-dark h3 {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step span {
    display: block;
    width: 50px;
    height: 50px;
    background: #83c340;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 20px;
}

/* Reviews Section */
.reviews-section {
    margin: 50px 0;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 25px 0;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #83c340;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-text {
    font-style: italic;
    margin: 15px 0 20px;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 20px;
}

.review-author {
    color: #666;
    font-weight: 500;
    font-style: normal;
    text-align: right;
}

/* Service CTA */
.service-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7e9 100%);
    border-radius: 10px;
    margin-top: 50px;
    border: 2px dashed #83c340;
}

.service-cta h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #242d2e;
}

.cta-note {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

/* Info Boxes */
.info-box, 
.feature-box, 
.warning-box, 
.health-warning {
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-box {
    background: #e3f2fd;
    
}

.feature-box {
    background: #f3e5f5;
   
}

.warning-box {
    background: #fff3cd;
   
}

.health-warning {
    background: #f8d7da;
    
}

.info-box h4,
.feature-box h4,
.warning-box h3,
.health-warning h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Steps List */
.steps-list {
    margin: 40px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    background: #83c340;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 18px;
}

.step-content h4 {
    margin-bottom: 8px;
    color: #242d2e;
    font-size: 18px;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.type-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.type-item i {
    font-size: 40px;
    color: #83c340;
    margin-bottom: 15px;
}

.type-item p {
    font-weight: 500;
    margin-bottom: 0;
}

/* =============================================
   15. GALLERY STYLES
   ============================================= */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #83c340;
    color: white;
    border-color: #83c340;
}

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

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.gallery-badge {
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-badge.before {
    background: #ff6b6b;
    color: white;
}

.gallery-badge.after {
    background: #83c340;
    color: white;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    margin-bottom: 10px;
    color: #242d2e;
}

.gallery-info p {
    color: #666;
    margin-bottom: 0;
}

/* =============================================
   16. CONTACT PAGE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 24px;
    color: #83c340;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #242d2e;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.social-contact {
    margin-top: 40px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;

    background: #242d2e;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #83c340;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #242d2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #83c340;
    box-shadow: 0 0 0 3px rgba(131, 195, 64, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

#formMessage {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 4px;
    font-weight: 500;
}

#formMessage .success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formMessage .error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =============================================
   CITY LINKS SECTION
   ============================================= */
.city-links-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7e9 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-top: 5px solid #83c340;
}

.city-links-section h3 {
    color: #242d2e;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.city-links-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #83c340;
    margin: 10px auto;
}

.city-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.city-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #242d2e;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.city-link-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #83c340;
    color: #83c340;
}

.city-link-btn i {
    font-size: 24px;
    color: #83c340;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.city-link-btn:hover i {
    transform: scale(1.2);
}

.city-link-btn span {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

/* CTA Button Style */
.city-link-btn.cta {
    background: #83c340;
    color: white;
    font-weight: 600;
    border-color: #83c340;
}

.city-link-btn.cta i {
    color: white;
}

.city-link-btn.cta:hover {
    background: #72a937;
    transform: translateY(-5px);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .city-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .city-links-section {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .city-links-section h3 {
        font-size: 22px;
    }
    
    .city-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .city-link-btn {
        padding: 16px;
    }
    
    .city-link-btn i {
        font-size: 22px;
    }
    
    .city-link-btn span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .city-links-section {
        padding: 20px 15px;
    }
    
    .city-links-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .city-link-btn {
        padding: 14px;
        gap: 12px;
    }
    
    .city-link-btn i {
        font-size: 20px;
    }
    
    .city-link-btn span {
        font-size: 14px;
    }
}

/* Animation */
.city-link-btn {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.city-link-btn:nth-child(1) { animation-delay: 0.1s; }
.city-link-btn:nth-child(2) { animation-delay: 0.2s; }
.city-link-btn:nth-child(3) { animation-delay: 0.3s; }
.city-link-btn:nth-child(4) { animation-delay: 0.4s; }
.city-link-btn:nth-child(5) { animation-delay: 0.5s; }
.city-link-btn:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* =============================================
   17. TESTIMONIALS PAGE
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: #83c340;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin: 15px 0 20px;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 20px;
}

.testimonial-author {
    color: #666;
    font-weight: 500;
    font-style: normal;
    text-align: right;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* =============================================
   18. FOOTER
   ============================================= */
.main-footer {
    background: #242d2e;
    color: white;
    padding: 60px 0 0;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #83c340;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #83c340;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #bbb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #83c340;
    padding-left: 5px;
}

.footer-section .service-areas {
    margin-top: 20px;
}

.footer-section .service-areas h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #83c340;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.areas-list span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
}

.areas-list .area-note {
    background: transparent;
    font-style: italic;
    opacity: 0.8;
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

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

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

.footer-social a:hover {
    background: #83c340;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #1a2122;
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: #bbb;
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #83c340;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =============================================
   CERTIFICATIONS SHOWCASE - 3 COLUMN LAYOUT
   ============================================= */
.certifications-showcase {
    padding: 60px 0;
    background: #f8f9fa;
}

.certifications-showcase .section-title {
    margin-bottom: 40px;
}

.certifications-showcase .section-title h2 {
    color: #242d2e;
}

.certifications-showcase .section-title p {
    color: #666;
}

.cert-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.cert-image {
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.cert-image img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.cert-info {
    padding: 25px;
    text-align: center;
}

.cert-info h4 {
    color: #242d2e;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cert-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 45px;
}

.cert-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #83c340;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.cert-item:hover .cert-learn {
    gap: 12px;
}

.cert-learn i {
    font-size: 12px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 992px) {
    .cert-grid-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cert-item:nth-child(3) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .certifications-showcase {
        padding: 50px 0;
    }
    
    .cert-grid-three {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .cert-item:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }
    
    .cert-image {
        height: 180px;
        padding: 25px;
    }
    
    .cert-image img {
        max-height: 130px;
    }
    
    .cert-info {
        padding: 20px;
    }
    
    .cert-info h4 {
        font-size: 18px;
    }
    
    .cert-info p {
        font-size: 14px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .certifications-showcase {
        padding: 40px 0;
    }
    
    .certifications-showcase .section-title {
        margin-bottom: 30px;
    }
    
    .certifications-showcase .section-title h2 {
        font-size: 28px;
    }
    
    .cert-grid-three {
        gap: 15px;
    }
    
    .cert-image {
        height: 160px;
        padding: 20px;
    }
    
    .cert-image img {
        max-height: 120px;
    }
    
    .cert-info {
        padding: 15px;
    }
    
    .cert-info h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .cert-info p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}



/* =============================================
   19. RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-slider,
    .slide {
        height: 500px;
    }
    
    .slide-content {
        padding: 100px 0;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .top-bar {
        padding-top: 70px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .hero-slider,
    .slide {
        height: 400px;
    }
    
    .slide-content {
        padding: 80px 0;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .slider-nav {
        bottom: 30px;
        right: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .service-areas-grid,
    .certifications-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 30px 20px;
    }
    
    .service-cta h4 {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .main-footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        top: 25px;
        right: 25px;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    
    .content-with-image {
        display: block !important;
    }
    .container {
        padding: 0 15px;
    }
    
    .hero-slider,
    .slide {
        height: 470px;
    }
    
    .slide-content {
        padding: 60px 0;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-buttons .btn {
        width: 100%;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .service-icon {
        padding: 30px;
        font-size: 36px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .review-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .mobile-menu-toggle {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .mobile-nav {
        width: 100%;
    }
    
    .mobile-nav-content {
        padding: 70px 20px 20px;
    }
    
    .social-icons a {
        width: 100%;
    }
}

/* =============================================
   20. ANIMATIONS & TRANSITIONS
   ============================================= */
.fade-in {
    animation: fadeIn 0.8s ease;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   21. PRINT STYLES
   ============================================= */
@media print {
    .top-bar,
    .main-header,
    .mobile-menu-toggle,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
}

/* =============================================
   MOBILE LOGO CENTERING
   ============================================= */
@media (max-width: 768px) {
    /* Center the logo container */
    .main-header .container {
        justify-content: center !important;
    }
    
    /* Center the logo itself */
    .logo {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Make sure logo link is properly centered */
    .logo a {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Adjust mobile menu toggle position */
    .mobile-menu-toggle {
        top: 20px;
        left: 20px;
        right: auto;
    }
    
    /* Adjust header padding for mobile */
    .main-header {
        padding: 15px 0;
    }
}

/* =============================================
   SLIDER TEXT ENHANCEMENTS
   ============================================= */

/* Add drop shadow to all slide text */
.slide-content {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stronger shadow for headings */
.slide-title {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.slide-title .highlight {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

/* Stronger shadow for tagline and text */
.slide-tagline {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.slide-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Ensure buttons also have good contrast */
.slide-buttons .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}