.intro-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Carousel slides wrapper */
.intro-carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
}

/* Individual slides */
.intro-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: carousel-fade 15s infinite;
}

/* Slide images */
.intro-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay on first slide */
.intro-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    color: #ffffff;
    z-index: 10;
    padding: 1rem 2rem 1rem 1rem;
    min-height: 120px;
    background: linear-gradient(to left,
        rgba(0, 121, 1, 0.9) 0%,
        rgba(0, 121, 1, 0.9) 50%,
        rgba(0, 121, 1, 0.5) 65%,
        rgba(0, 121, 1, 0) 75%,
        rgba(0, 121, 1, 0) 100%
    );
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    pointer-events: auto;
    user-select: text;
}

.intro-carousel-overlay * {
    pointer-events: auto;
    user-select: text;
}

.intro-carousel-overlay h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.15rem 0 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    font-family: Georgia, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.intro-carousel-overlay p {
    font-size: 1rem !important;
    margin: 0.2rem 0;
    line-height: 1.3;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.intro-carousel-overlay .intro-carousel-location {
    font-size: 1rem;
    margin-top: 0.4rem;
}

.intro-carousel-overlay a {
    color: #68d391;
    font-weight: bold;
    transition: color 0.3s ease;
}

.intro-carousel-overlay a:hover {
    color: #9ae6b4;
    text-decoration: none;
}

/* Black Friday overlay styling */
.intro-carousel-overlay-blackfriday {
    background: linear-gradient(to left,
        rgba(220, 38, 38, 0.9) 0%,
        rgba(220, 38, 38, 0.9) 50%,
        rgba(220, 38, 38, 0.5) 65%,
        rgba(220, 38, 38, 0) 75%,
        rgba(220, 38, 38, 0) 100%
    ) !important;
    border: none;
    box-shadow: none;
}

.intro-carousel-overlay-blackfriday h2 {
    font-size: 1.6rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.intro-carousel-overlay-blackfriday .blackfriday-offer {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff !important;
    margin: 0.3rem 0;
    line-height: 1.25;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.intro-carousel-overlay-blackfriday .blackfriday-code {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin: 0.4rem 0;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.intro-carousel-overlay-blackfriday .blackfriday-code strong {
    color: #ffffff !important;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.intro-carousel-overlay-blackfriday .blackfriday-deadline {
    font-size: 0.9rem;
    color: #ffffff !important;
    font-style: italic;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Animation delays for 3 slides */
.intro-carousel-slide:nth-child(1) {
    animation-delay: 0s;
}

.intro-carousel-slide:nth-child(2) {
    animation-delay: 5s;
}

.intro-carousel-slide:nth-child(3) {
    animation-delay: 10s;
}

/* Keyframes for fade animation */
@keyframes carousel-fade {
    0% { opacity: 0; }
    6.67% { opacity: 1; }
    33.33% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

/* Carousel dots/indicators */
.intro-carousel-dots {
    display: none;
}

.intro-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: dot-fade 15s infinite;
}

.intro-carousel-dot:nth-child(1) {
    animation-delay: 0s;
}

.intro-carousel-dot:nth-child(2) {
    animation-delay: 5s;
}

.intro-carousel-dot:nth-child(3) {
    animation-delay: 10s;
}

@keyframes dot-fade {
    0% { background-color: rgba(255, 255, 255, 1); transform: scale(1.2); }
    6.67% { background-color: rgba(255, 255, 255, 1); transform: scale(1.2); }
    33.33% { background-color: rgba(255, 255, 255, 1); transform: scale(1.2); }
    40% { background-color: rgba(255, 255, 255, 0.5); transform: scale(1); }
    100% { background-color: rgba(255, 255, 255, 0.5); transform: scale(1); }
}

/* Responsive carousel heights */
@media (max-width: 1024px) {
    /* aspect-ratio maintains 3:1 automatically */
}

@media (max-width: 768px) {
    /* aspect-ratio maintains 3:1 automatically */

    .intro-carousel {
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .intro-carousel-dots {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .intro-carousel-dot {
        width: 10px;
        height: 10px;
    }

    .intro-carousel-overlay {
        padding: 0.9rem 1.5rem 0.9rem 1rem;
        min-height: 100px;
        align-items: flex-end;
    }

    .intro-carousel-overlay h2 {
        font-size: 1.6rem;
    }

    .intro-carousel-overlay p {
        font-size: 0.85rem;
    }

    .intro-carousel-overlay .intro-carousel-location {
        font-size: 0.75rem;
    }

    .intro-carousel-overlay-blackfriday h2 {
        font-size: 1.4rem;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-offer {
        font-size: 0.95rem;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-code {
        font-size: 1rem;
        padding: 0.5rem 0.65rem;
        margin: 0.3rem 0;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-code strong {
        font-size: 1.1rem;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-deadline {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* aspect-ratio maintains 3:1 automatically */

    .intro-carousel {
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .intro-carousel-dots {
        top: 12px;
        right: 12px;
        gap: 6px;
    }

    .intro-carousel-dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .intro-carousel-overlay {
        padding: 0.75rem 1.25rem 0.75rem 0.75rem;
        min-height: 90px;
        align-items: flex-end;
        background: linear-gradient(to left,
            rgba(0, 121, 1, 0.9) 0%,
            rgba(0, 121, 1, 0.9) 60%,
            rgba(0, 121, 1, 0.4) 75%,
            rgba(0, 121, 1, 0) 85%,
            rgba(0, 121, 1, 0) 100%
        );
    }

    .intro-carousel-overlay h2 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .intro-carousel-overlay p {
        font-size: 0.9rem;
        margin: 0.25rem 0;
    }

    .intro-carousel-overlay .intro-carousel-location {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }

    .intro-carousel-overlay-blackfriday {
        background: linear-gradient(to left,
            rgba(220, 38, 38, 0.9) 0%,
            rgba(220, 38, 38, 0.9) 60%,
            rgba(220, 38, 38, 0.4) 75%,
            rgba(220, 38, 38, 0) 85%,
            rgba(220, 38, 38, 0) 100%
        ) !important;
    }

    .intro-carousel-overlay-blackfriday h2 {
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-offer {
        font-size: 0.85rem;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-code {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
        margin: 0.3rem 0;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-code strong {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .intro-carousel-overlay-blackfriday .blackfriday-deadline {
        font-size: 0.75rem;
    }
}

/* ================================
   BLACK FRIDAY SECTION STYLING
   ================================ */

/* Red gradient background for Black Friday */
.southlands-blackfriday {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 50%, #fecdd3 100%) !important;
}

/* Red accent bar at top */
.southlands-blackfriday::before {
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171) !important;
    height: 4px !important;
}

/* Red title color */
.southlands-blackfriday .southlands-info-title {
    color: #991b1b !important;
}

/* Red icon tint */
.southlands-blackfriday .southlands-title-icon {
    filter: hue-rotate(0deg) saturate(2) brightness(0.6) !important;
}

/* Bold text in red */
.southlands-blackfriday .southlands-info-main b {
    color: #dc2626;
    font-size: 1.15rem;
}

/* Red-themed schedule box */
.southlands-blackfriday .southlands-sales-schedule .southlands-season {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left-color: #dc2626;
}

.southlands-blackfriday .southlands-sales-schedule .southlands-season strong {
    color: #991b1b;
}

.southlands-blackfriday .southlands-sales-schedule .southlands-season p {
    color: #7f1d1d;
}

.southlands-blackfriday .southlands-sales-schedule .southlands-season b {
    color: #dc2626;
    font-size: 1.1rem;
}

/* Red-themed notice box */
.southlands-blackfriday .southlands-notice {
    background: rgba(254, 226, 226, 0.5);
    border-color: rgba(220, 38, 38, 0.4);
}

.southlands-blackfriday .southlands-notice p {
    color: #7f1d1d;
}

.southlands-blackfriday .southlands-notice a {
    color: #dc2626;
    font-weight: bold;
}

.southlands-blackfriday .southlands-notice a:hover {
    color: #991b1b;
    text-decoration: none;
}

/* Hover effect for Black Friday card */
.southlands-blackfriday:hover {
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
}

/* ================================
   NAVIGATION STYLES
   ================================ */
#navigation {
    text-align: center;
}

#navigation ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

#navigation li {
    display: inline-block;
    margin: 0 10px; /* Adjust spacing between items as needed */
}

/* ================================
   SERVICE CARDS SECTION
   ================================ */

/* Services Section Wrapper with Green Background */
.southlands-services-section {
    background: linear-gradient(135deg, #007901 0%, #005a01 50%, #007901 100%);
    padding: 3rem 1rem 4rem 1rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay */
.southlands-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative top border accent */
.southlands-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 20%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.5) 80%,
        transparent 100%);
}

/* Services Header Styling */
.southlands-services-header {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    padding: 0;
    font-family: Georgia, serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Service Cards Grid Container */
.southlands-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

/* Individual Service Card */
.southlands-service-card {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    width: 100%;
    max-width: 320px;
}

/* Hover effects */
.southlands-service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #68d391;
    text-decoration: none;
}

.southlands-service-card:active {
    transform: translateY(-5px) scale(1.02);
}

/* Card icon (using img tag) */
.southlands-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    display: block;
    transition: transform 0.3s ease;
    filter: hue-rotate(90deg) saturate(1.2) brightness(0.8);
}

.southlands-service-card:hover .southlands-card-icon {
    transform: scale(1.15) rotate(8deg);
}

/* Card title (using strong tag) */
.southlands-card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2d5016;
    font-family: Georgia, serif;
    display: block;
    line-height: 1.3;
}

/* Card description (using p tag) */
.southlands-card-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

/* Card call-to-action info (using p tag) */
.southlands-card-info {
    font-size: 1rem;
    color: #38a169;
    font-weight: bold;
    background: rgba(56, 161, 105, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    display: inline-block;
    margin: 0;
    transition: all 0.3s ease;
}

.southlands-service-card:hover .southlands-card-info {
    background: rgba(56, 161, 105, 0.2);
    transform: scale(1.05);
}

/* Top accent line */
.southlands-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #38a169, #68d391, #48bb78);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.southlands-service-card:hover::before {
    transform: scaleX(1);
}

/* Subtle background pattern */
.southlands-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="1" fill="rgba(56,161,105,0.05)"/><circle cx="20" cy="80" r="1.5" fill="rgba(56,161,105,0.05)"/><circle cx="70" cy="70" r="0.5" fill="rgba(56,161,105,0.05)"/></svg>');
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.southlands-service-card:hover::after {
    opacity: 1;
}

/* ================================
   INFORMATION SECTION
   ================================ */

/* Main container */
.southlands-info-section {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Individual info cards */
.southlands-info-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.southlands-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card titles with icons */
.southlands-info-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.southlands-title-icon {
    width: 40px;
    height: 40px;
    filter: hue-rotate(120deg) saturate(1.3) brightness(0.7);
}

/* Main descriptive text */
.southlands-info-main {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

/* Hours wrapper for visitors */
.southlands-hours-wrapper {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.southlands-hour-item {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.southlands-hour-item strong {
    display: block;
    color: #2d5016;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.southlands-hour-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Sales schedule styling */
.southlands-sales-schedule {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.southlands-season {
    flex: 1;
    min-width: 160px;
    background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #f6ad55;
}

.southlands-season strong {
    display: block;
    color: #c05621;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.southlands-season p {
    margin: 0;
    color: #744210;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Contact methods */
.southlands-contact-methods {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.southlands-contact-method {
    flex: 1;
    min-width: 180px;
}

.southlands-contact-method strong {
    display: block;
    color: #2d5016;
    margin-bottom: 0.25rem;
}

.southlands-contact-method p {
    margin: 0;
}

.southlands-contact-link {
    color: #0891b2;
    text-decoration: none;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.southlands-contact-link:hover {
    background: rgba(8, 145, 178, 0.1);
    text-decoration: none;
}

.southlands-office-hours {
    color: #4a5568;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Notice/disclaimer styling */
.southlands-notice {
    background: rgba(254, 215, 170, 0.3);
    border: 1px solid rgba(246, 173, 85, 0.4);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.southlands-notice p {
    margin: 0;
    color: #744210;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Card-specific accent colors */
.southlands-visitors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38a169, #68d391);
    border-radius: 16px 16px 0 0;
}

.southlands-sales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f6ad55, #fbb042);
    border-radius: 16px 16px 0 0;
}

.southlands-pumpkin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed8936, #f6ad55);
    border-radius: 16px 16px 0 0;
}

.southlands-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    border-radius: 16px 16px 0 0;
}

/* Philosophy section - spans 2 columns on large screens */
.southlands-philosophy-section {
    grid-column: span 2;
}

.southlands-philosophy-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border-top: 5px solid #4a5568;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.southlands-philosophy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.southlands-philosophy-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: #a0aec0;
    line-height: 1;
    font-family: Georgia, serif;
}

.southlands-philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-family: Georgia, serif;
}

.southlands-philosophy-card p:last-child {
    margin-bottom: 0;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large screens (3-4 cards per row) */
@media (min-width: 1200px) {
    .southlands-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Medium screens (2-3 cards per row) */
@media (min-width: 768px) and (max-width: 1199px) {
    .southlands-services-header {
        font-size: 1.8rem;
    }

    .southlands-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .southlands-service-card {
        max-width: none;
        min-height: 230px;
    }
    
    .southlands-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .southlands-card-title {
        font-size: 1.3rem;
    }
    
    .southlands-info-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .southlands-philosophy-section {
        grid-column: 1 / -1;
    }
}

/* Small tablets (2 cards per row) */
@media (min-width: 576px) and (max-width: 767px) {
    .southlands-services-section {
        padding: 2.5rem 1rem 3.5rem 1rem;
    }

    .southlands-services-header {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .southlands-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 1.5rem 0;
    }
    
    .southlands-service-card {
        padding: 1.8rem 1.2rem;
        min-height: 220px;
        max-width: none;
    }
    
    .southlands-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .southlands-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .southlands-card-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .southlands-card-info {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .southlands-info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .southlands-philosophy-section {
        grid-column: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .southlands-info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .southlands-info-card {
        padding: 1.5rem;
    }
    
    .southlands-info-title {
        font-size: 2rem !important;
    }
    
    .southlands-title-icon {
        width: 32px;
        height: 32px;
    }
    
    .southlands-hours-wrapper,
    .southlands-sales-schedule,
    .southlands-contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .southlands-hour-item,
    .southlands-season,
    .southlands-contact-method {
        min-width: unset;
    }
    
    .southlands-philosophy-section {
        grid-column: 1;
    }
    
    .southlands-philosophy-card {
        padding: 2rem;
    }
    
    .southlands-philosophy-card::before {
        font-size: 3rem;
        top: 1rem;
        left: 1.5rem;
    }
}

/* Mobile (1 card per row) */
@media (max-width: 575px) {
    .southlands-services-section {
        padding: 2rem 0.5rem 3rem 0.5rem;
        margin: 1.5rem 0;
    }

    .southlands-services-header {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .southlands-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .southlands-service-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
        max-width: 100%;
        margin: 0 10px;
    }
    
    .southlands-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .southlands-card-title {
        font-size: 1.4rem;
    }
    
    .southlands-card-description {
        font-size: 1rem;
    }
    
    .southlands-info-section {
        padding: 0 0.5rem;
    }
    
    .southlands-info-card {
        padding: 1.25rem;
    }
    
    .southlands-info-title {
        font-size: 1.8rem !important;
        gap: 0.5rem;
    }
    
    .southlands-title-icon {
        width: 28px;
        height: 28px;
    }
    
    .southlands-philosophy-card {
        padding: 1.5rem;
    }
}

/* ================================
   ACCESSIBILITY & PRINT STYLES
   ================================ */

/* Accessibility improvements */
.southlands-service-card:focus {
    outline: 3px solid #68d391;
    outline-offset: 3px;
    transform: translateY(-5px);
}

.southlands-contact-link:focus {
    outline: 2px solid #0891b2;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .southlands-service-card {
        transition: none;
    }
    
    .southlands-service-card:hover {
        transform: none;
    }
    
    .southlands-card-icon {
        transition: none;
    }
    
    .southlands-service-card:hover .southlands-card-icon {
        transform: none;
    }
    
    .southlands-service-card::before,
    .southlands-service-card::after {
        transition: none;
    }
    
    .southlands-info-card {
        transition: none;
    }
    
    .southlands-info-card:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .southlands-service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .southlands-service-card:hover {
        transform: none;
    }
    
    .southlands-info-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .southlands-info-card:hover {
        transform: none;
    }
}