/*
 * Sun Soft Wash - Responsive Website CSS
 * 
 * Mobile-First Responsive Design with Modern Best Practices
 * 
 * Features:
 * - CSS Custom Properties for consistent theming
 * - Mobile-first responsive design approach
 * - Comprehensive breakpoint system (480px, 768px, 1024px, 1200px)
 * - Touch-friendly interface (44px minimum touch targets)
 * - Accessibility features (high contrast, reduced motion, dark mode)
 * - Performance optimizations
 * - Print-friendly styles
 * - Modern CSS features (Grid, Flexbox, CSS Variables)
 * 
 * Breakpoints:
 * - Mobile: 0-480px
 * - Tablet: 481px-768px  
 * - Small Desktop: 769px-1024px
 * - Large Desktop: 1025px+
 */

/* CSS Custom Properties for Responsive Design */
:root {
    /* Colors */
    --primary-color: #19213A;
    --secondary-color: #FFB903;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --overlay: rgba(25, 33, 58, 0.5);
    
    /* Typography */
    --font-primary: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --large-desktop: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #19213A;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

html, body {
    background: transparent;
}

body {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--large-desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    background: transparent;
    
    /* Responsive container */
    @media (max-width: 1200px) {
        max-width: 100%;
        padding: 0 var(--spacing-lg);
    }
    
    @media (max-width: 768px) {
        padding: 0 var(--spacing-md);
    }
    
    @media (max-width: 480px) {
        padding: 0 var(--spacing-sm);
    }
}

/* Main Content Wrapper */
.main-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#header {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    position: relative;
    top: 0;
    background: transparent;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    padding: var(--spacing-xs) 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-secondary);
    width: 100%;
    position: relative;
    margin: 0;
    border: none;
    outline: none;
    
    @media (max-width: 768px) {
        padding: var(--spacing-xs) 0;
        font-size: 12px;
    }
    
    @media (max-width: 480px) {
        padding: var(--spacing-xs) 0;
        font-size: 11px;
    }
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    
    @media (max-width: 768px) {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    @media (max-width: 480px) {
        gap: var(--spacing-xs);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    white-space: nowrap;
    
    @media (max-width: 768px) {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

.icon {
    width: 16px;
    height: 16px;
}

/* Main Navigation */
.main-nav {
    background: var(--primary-color);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
    margin-top: 0;
    border-top: none;
    
    @media (max-width: 768px) {
        padding: var(--spacing-sm) 0;
    }
    
    @media (max-width: 480px) {
        padding: var(--spacing-sm) 0;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-image {
    height: 66px;
    width: auto;
    max-width: 200px;
    
    @media (max-width: 768px) {
        height: 50px;
        max-width: 160px;
    }
    
    @media (max-width: 480px) {
        height: 40px;
        max-width: 140px;
    }
}

/* Remove old logo styles */
/* .logo-icon, .logo-text, .logo-main, .logo-sub styles removed */

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    
    @media (max-width: 1024px) {
        gap: var(--spacing-md);
    }
    
    @media (max-width: 768px) {
        gap: var(--spacing-sm);
    }
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-secondary);
    
    @media (max-width: 768px) {
        font-size: 13px;
    }
    
    @media (max-width: 480px) {
        font-size: 12px;
    }
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-secondary);
    
    @media (max-width: 768px) {
        font-size: 13px;
    }
    
    @media (max-width: 480px) {
        font-size: 12px;
    }
}

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

.dropdown {
    position: relative;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal);
    margin-left: var(--spacing-xs);
    
    @media (max-width: 768px) {
        width: 14px;
        height: 14px;
    }
    
    @media (max-width: 480px) {
        width: 12px;
        height: 12px;
    }
}

.dropdown.active > .nav-link {
    color: var(--secondary-color);
}

/* Focus styles for accessibility */
.dropdown > .nav-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.dropdown-menu .nav-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: -2px;
}

/* Ensure dropdown stays within viewport */
@media (max-width: 1200px) {
    .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateY(-10px);
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: translateY(0);
    }
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    min-width: 250px;
    max-width: 300px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 9999;
    list-style: none;
    margin-top: var(--spacing-sm);
    white-space: nowrap;
    
    @media (max-width: 768px) {
        min-width: 200px;
        max-width: 250px;
        padding: var(--spacing-md) 0;
    }
    
    @media (max-width: 480px) {
        min-width: 180px;
        max-width: 220px;
        padding: var(--spacing-sm) 0;
    }
}

/* Show dropdown on hover OR when active class is present */
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .nav-link {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    
    @media (max-width: 768px) {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 13px;
    }
    
    @media (max-width: 480px) {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 12px;
    }
}

.dropdown-menu .nav-link:hover {
    color: var(--secondary-color);
}

/* External link styling */
.dropdown-menu .nav-link[target="_blank"] {
    position: relative;
    padding-right: 30px;
}

.dropdown-menu .nav-link[target="_blank"]::after {
    content: "↗";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    transition: color 0.3s ease;
}

.dropdown-menu .nav-link[target="_blank"]:hover::after {
    color: #FFB903;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-secondary);
    
    @media (max-width: 768px) {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 13px;
        min-width: 160px;
    }
    
    @media (max-width: 480px) {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 12px;
        min-width: 140px;
        width: 100%;
        max-width: 300px;
    }
}

.cta-button:hover {
    background: #E6A700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 185, 3, 0.3);
}

/* Touch-friendly active states for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button:active {
        background: #E6A700;
        transform: scale(0.98);
    }
}

/* Ensure touch targets are large enough */
@media (max-width: 768px) {
    .nav-link,
    .dropdown-menu .nav-link,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-dropdown-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Improve mobile navigation */
    .nav-content {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0;
    }
    
    /* Better mobile spacing */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Mobile-friendly hero */
    .hero-headline {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-lg);
    }
    
    /* Mobile button layout */
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 16px;
        min-height: 48px;
    }
    
    /* Mobile service cards */
    .service-card {
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: var(--spacing-sm);
        min-height: 48px;
    }
    
    /* Mobile image optimization */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile grid system */
    .grid {
        display: grid;
        gap: var(--spacing-md);
        grid-template-columns: 1fr;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Mobile flexbox improvements */
    .flex {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .flex-row {
        flex-direction: column;
    }
    
    .flex-row > * {
        width: 100%;
    }
    
    /* Mobile typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    p { font-size: 1rem; line-height: 1.6; }
}

@media (max-width: 480px) {
    /* Extra small device optimizations */
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-headline {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        max-width: 280px;
    }
    
    .hero-cta {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 15px;
        min-height: 44px;
    }
    
    /* Mobile navigation improvements */
    .nav-links {
        gap: var(--spacing-xs);
    }
    
    .nav-link {
        font-size: 12px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* Mobile spacing adjustments */
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }
    
    /* Mobile form spacing */
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: var(--spacing-xs);
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flex-row {
        flex-direction: row;
    }
    
    .flex-row > * {
        width: auto;
        flex: 1;
    }
}

/* Desktop Responsiveness */
@media (min-width: 1025px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .flex-row {
        flex-direction: row;
    }
    
    .flex-row > * {
        width: auto;
        flex: 1;
    }
    
    /* Large screen optimizations */
    .container {
        max-width: var(--large-desktop);
    }
    
    .hero-headline {
        font-size: 4rem;
    }
    
    .hero-subheadline {
        font-size: 1.4rem;
    }
}

/* Performance and Modern CSS Features */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --text-color: #000000;
        --text-light: #333333;
    }
    
    .nav-link,
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --text-light: #cccccc;
        --white: #000000;
        --overlay: rgba(0, 0, 0, 0.7);
    }
}

/* Print styles */
@media print {
    .main-nav,
    .top-bar,
    .cta-button,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

.lightning-icon {
    width: 16px;
    height: 16px;
}

.action-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-color);
    
    @media (max-width: 768px) {
        min-height: 70vh;
    }
    
    @media (max-width: 480px) {
        min-height: 60vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/herobg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Fallback background color in case image fails to load */
    background-color: var(--primary-color);
    
    @media (max-width: 768px) {
        background-position: center 20%;
    }
    
    @media (max-width: 480px) {
        background-position: center 30%;
    }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 1;
}

/* Specific gutter cleaning hero image adjustment */
.service-page .hero-image {
    object-fit: cover;
    object-position: center 40%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 160%;
    min-width: 160%;
    min-height: 160%;
    z-index: 1;
    border: none;
    outline: none;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Service pages get wider text container */
.service-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .service-page .hero-text .badges-strip {
        gap: 15px;
        padding: 15px 20px;
        margin: 30px 0 0 0;
    }
    
    .service-page .hero-text .badge {
        height: 45px;
    }
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
    }
    
    .portfolio-cta h3 {
        font-size: 1.5rem;
    }
}

/* Small Hero & Gallery Responsive Design */
@media (max-width: 768px) {
    .small-hero {
        padding: 60px 0;
    }
    
    .small-hero-title {
        font-size: 2.5rem;
    }
    
    .small-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-tabs {
        gap: 8px;
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .photo-item img {
        height: 200px;
    }
    
    .our-work-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .our-work-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .our-work-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .our-work-page .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .testimonials-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .testimonials-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .contact-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .about-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .about-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .about-ssw-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instant-quote-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .instant-quote-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instant-quote-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .quote-form-container {
        padding: 30px;
        margin: 0 20px;
    }
    
    .privacy-policy-page .hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .privacy-policy-page .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .privacy-policy-page .hero-headline {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        margin: 0 20px;
    }
    
    .policy-header h2 {
        font-size: 2rem;
    }
    
    .policy-section h3 {
        font-size: 1.6rem;
    }
    
    .policy-section h4 {
        font-size: 1.2rem;
    }
    
    .value-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .value-number::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-text {
        padding-right: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .area-card {
        padding: 25px;
    }
    
    /* Very small screens */
    @media (max-width: 480px) {
        .areas-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }
}

/* Use homepage badges strip styling for service pages */
.service-page .hero-text .badges-strip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 0;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    width: fit-content;
}

.service-page .hero-text .badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-page .hero-text .badge {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.service-page .hero-text .badge:hover {
    transform: scale(1.1);
}

/* About SSW Section */
.about-ssw-section {
    padding: 80px 0;
    background: white;
}

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

.about-ssw-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-ssw-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-ssw-text p:last-child {
    margin-bottom: 0;
}

.company-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.company-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.values-text {
    padding-left: 20px;
}

.values-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.values-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    align-self: center;
}

.values-container {
    margin-top: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFB903;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.value-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFB903 0%, #FF8C00 100%);
    border-radius: 2px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Why Choose SSW Section */
.why-choose-section {
    padding: 60px 0;
    background: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB903 0%, #FF8C00 100%);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFB903;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFB903 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 184, 3, 0.3);
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Service Areas Section */
.service-areas-section {
    padding: 60px 0;
    background: white;
}

.areas-header {
    text-align: center;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB903 0%, #FF8C00 100%);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFB903;
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB903 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 184, 3, 0.3);
}

.area-icon svg {
    width: 30px;
    height: 30px;
}

.area-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 12px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.area-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 60px;
    overflow: hidden;
}

/* Privacy Policy Content Section */
.privacy-content-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 10px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.last-updated {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.policy-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #19213A;
    margin: 20px 0 10px 0;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}



.contact-info p {
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Additional fix for very long headlines */
.service-page .hero-text .hero-headline {
    word-wrap: break-word;
    hyphens: auto;
}

/* Small Hero Section */
.small-hero {
    background: linear-gradient(135deg, #19213A 0%, #2C3E50 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.small-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.small-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.small-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Our Work Page Hero - Same size as small hero but with service page structure */
.our-work-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.our-work-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.our-work-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.our-work-page .hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Testimonials Page Hero - Same size as small hero but with service page structure */
.testimonials-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.testimonials-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.testimonials-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Contact Page Hero - Same size as small hero but with service page structure */
.contact-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.contact-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* About Page Hero - Same size as small hero but with service page structure */
.about-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.about-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Instant Quote Page Hero - Same size as small hero but with service page structure */
.instant-quote-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.instant-quote-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.instant-quote-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Privacy Policy Page Hero - Same size as small hero but with service page structure */
.privacy-policy-page .hero {
    min-height: 60vh;
    padding: 80px 0;
}

.privacy-policy-page .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.privacy-policy-page .hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Gallery Section with Service Tabs */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    max-width: 100%;
}

.tab-button {
    padding: 12px 24px;
    border: 2px solid #FFB903;
    background: transparent;
    color: #19213A;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tab-button:hover {
    background: #FFB903;
    color: #19213A;
    transform: translateY(-2px);
}

.tab-button.active {
    background: #FFB903;
    color: #19213A;
}

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

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(25, 33, 58, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

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



/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info {
    padding-right: 40px;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFB903 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #19213A;
    margin: 0 0 8px 0;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-details p {
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.business-hours {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.business-hours h3 {
    font-size: 20px;
    font-weight: 600;
    color: #19213A;
    margin: 0 0 20px 0;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #19213A;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.time {
    color: #666;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #19213A;
    margin: 0 0 10px 0;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-form > p {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #19213A;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB903;
}

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

.submit-button {
    background: linear-gradient(135deg, #FFB903 0%, #FF8C00 100%);
    color: #19213A;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 3, 0.3);
}

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

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFB903 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviewer-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #19213A;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stars {
    color: #FFB903;
    font-size: 16px;
    letter-spacing: 2px;
}

.google-logo {
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonial-date {
    font-size: 13px;
    color: #666;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* CTA Section for Testimonials Link */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #19213A 0%, #2C3E50 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #FFB903;
    color: #19213A;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cta-button:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 3, 0.3);
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-images {
    padding: 20px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-container .image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(25, 33, 58, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #FFB903;
    color: #19213A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.portfolio-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.portfolio-cta p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -30%;
    width: 70vw;
    height: 120%;
    background: url('../assets/images/strip.png?v=1.1') no-repeat top right;
    background-size: cover;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

.hero-strip {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
    font-family: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badges-strip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
}

/* Generic badges strip component */
.badges-strip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    margin: 40px auto 0;
}

/* Service Page Specific Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFB903 0%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Promo Section Styles */
.hero-promo-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-promo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #FFB903 0%, #FFD700 100%);
    border-radius: 50% 0 0 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-promo-left {
    padding-right: 40px;
}

.hero-promo-title {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-promo-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-promo-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-promo-benefits {
    margin: 0 0 30px 0;
}

.hero-promo-benefits p {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.hero-promo-benefits p:last-child {
    margin-bottom: 0;
}

.hero-promo-benefits p strong {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-promo-benefits .checkmark {
    color: #ff8c00;
    font-weight: bold;
    margin-right: 8px;
    font-size: 1rem;
}

.hero-promo-conclusion {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-promo-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #FFB903;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: #E6A800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 185, 3, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button.secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.phone-icon {
    width: 18px;
    height: 18px;
}

.hero-promo-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-promo-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-promo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles for hero promo section */
@media (max-width: 1024px) {
    .hero-promo-content {
        gap: 40px;
    }
    
    .hero-promo-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-promo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-promo-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-promo-right {
        order: 1;
    }
    
    .hero-promo-title {
        font-size: 2rem;
    }
    
    .hero-promo-buttons {
        flex-direction: column;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-promo-section {
        padding: 60px 0;
    }
    
    .hero-promo-title {
        font-size: 1.8rem;
    }
    
    .hero-promo-subtitle {
        font-size: 1.2rem;
    }
}

/* Text-Images Columns Style */
.benefits-content,
.process-content,
.why-ssw-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.benefits-left,
.process-left,
.why-ssw-left {
    display: flex;
    flex-direction: column;
}

.benefits-text,
.process-text,
.why-ssw-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item,
.process-step,
.why-ssw-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon,
.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FFB903;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg,
.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stronger background for numbered feature icons */
.feature-icon:has(.feature-number) {
    background: #FFB903 !important;
    opacity: 1;
}

/* Check mark styling - smaller and bolder */
.feature-icon svg {
    width: 18px;
    height: 18px;
    color: white;
    stroke-width: 2;
}

/* Force solid yellow background for check mark icons */
.about-feature .feature-icon {
    background: #FFB903 !important;
    opacity: 1 !important;
}

.benefit-text-content,
.step-content,
.feature-text {
    flex: 1;
}

.benefit-text-content h3,
.step-content h3,
.feature-text h3 {
    margin: 0 0 10px 0;
    color: #19213A;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-text-content p,
.step-content p,
.feature-text p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #19213A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefits-right,
.process-right,
.why-ssw-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image,
.process-image,
.why-ssw-image {
    max-width: 100%;
    height: auto;
}

.benefits-image img,
.process-image img,
.why-ssw-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    max-width: 400px;
}

/* Responsive Design for Text-Images Columns */
@media (max-width: 1024px) {
    .benefits-content,
    .process-content,
    .why-ssw-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .benefits-content,
    .process-content,
    .why-ssw-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-left,
    .process-left,
    .why-ssw-left {
        order: 2;
    }
    
    .benefits-right,
    .process-right,
    .why-ssw-right {
        order: 1;
    }
    
    .benefit-item,
    .process-step,
    .why-ssw-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-icon,
    .feature-icon,
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .benefits-content,
    .process-content,
    .why-ssw-content {
        gap: 30px;
        margin-top: 30px;
    }
    
    .benefits-text,
    .process-text,
    .why-ssw-features {
        gap: 25px;
    }
}

/* Process Section - Removed duplicate and conflicting rules */

/* Why Sun Softwash Section */
.why-ssw-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-ssw-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

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

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

.why-ssw-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFB903 0%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.why-ssw-feature .feature-icon svg {
    width: 25px;
    height: 25px;
}

.why-ssw-feature .feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 8px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.why-ssw-feature .feature-text p {
    color: #666;
    line-height: 1.6;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.why-ssw-image {
    text-align: center;
}

.why-ssw-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Service Pages */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    /* Process steps responsive rules removed - using main process-steps styling */
    
    .why-ssw-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-ssw-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon svg {
        width: 30px;
        height: 30px;
    }
    
    /* Step number responsive rules removed - using main step-number styling */
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.badge {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.1);
}

.badge:hover {
    transform: scale(1.1);
}

.hero-cta {
    padding: 16px 32px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
    font-family: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-cta.primary {
    background: #FFB903;
    color: #19213A;
}

.hero-cta.primary:hover {
    background: #E6A700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 185, 3, 0.4);
}

.hero-cta.secondary {
    background: transparent;
    color: #19213A;
    border: 2px solid #19213A;
}

.hero-cta.secondary:hover {
    background: #19213A;
    color: white;
    transform: translateY(-2px);
}

/* Hero-specific override: keep phone CTA white on dark hero background */
.hero .hero-cta.secondary {
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero .hero-cta.secondary:hover {
    background: #ffffff;
    color: #19213A;
}

/* Touch-friendly active states for mobile */
@media (hover: none) and (pointer: coarse) {
    .hero-cta.primary:active {
        background: #E6A700;
        transform: scale(0.98);
    }
    
    .hero-cta.secondary:active {
        background: white;
        color: #19213A;
        transform: scale(0.98);
    }
}

.phone-icon {
    width: 18px;
    height: 18px;
}

/* Promotional Section */
.promo-section {
    background: linear-gradient(135deg, #FFB903 0%, #FFD54F 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.promo-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.promo-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-cta {
    background: #19213A;
    color: #fff;
    border: none;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(25, 33, 58, 0.3);
}

.promo-cta:hover {
    background: #2A3147;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 33, 58, 0.4);
}

.promo-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(25, 33, 58, 0.3);
}

/* Touch-friendly active states for mobile */
@media (hover: none) and (pointer: coarse) {
    .promo-cta:active {
        background: #2A3147;
        transform: scale(0.98);
    }
}

.promo-right {
    text-align: left;
}

.promo-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #19213A;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Trust Stripe - Removed for now */

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-right {
        order: -1;
        margin-bottom: 20px;
        min-height: 300px;
    }
    
    .nav-links {
        gap: 20px;
    }

    .promo-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        max-width: 800px;
    }
    
    .promo-left {
        text-align: center;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-section {
        padding: 50px 0;
    }
    
    .promo-cta {
        padding: 16px 32px;
        font-size: 15px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    /* Mobile dropdown improvements */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.05);
        min-width: auto;
        max-width: none;
        display: none;
        z-index: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu .nav-link {
        padding: 15px 40px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: transparent;
        transform: none;
    }
    
    .dropdown-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFB903;
        transform: none;
    }
    
    /* Mobile external link styling */
    .dropdown-menu .nav-link[target="_blank"]::after {
        right: 20px;
        font-size: 14px;
    }
    
    /* Enhanced mobile navigation */
    .nav-content {
        position: relative;
        padding: var(--spacing-sm) 0;
    }
    
    /* Mobile menu button positioning */
    .mobile-menu-btn {
        position: absolute;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        z-index: 1001;
    }
    
    /* Mobile navigation overlay */
    .mobile-overlay {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Mobile navigation content */
    .nav-content.mobile-open {
        background: var(--primary-color);
        box-shadow: var(--shadow-heavy);
    }
    
    /* Mobile navigation links */
    .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Mobile dropdown improvements */
    .dropdown.mobile-open .dropdown-menu {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        margin: var(--spacing-xs) 0;
    }
    
    /* Mobile CTA button */
    .cta-button.mobile {
        width: 100%;
        margin: var(--spacing-sm) 0;
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-badges-strip {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
        margin-top: 25px;
    }
    
    .hero-badge {
        height: 40px;
    }
    
    .badges-strip {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .badge {
        height: 40px;
    }

    .promo-section {
        padding: 40px 0;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    .promo-content {
        gap: 40px;
        padding: 0 15px;
    }
    
    .promo-cta {
        padding: 14px 28px;
        font-size: 14px;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-badges-strip {
        gap: 12px;
        padding: 12px 15px;
        margin-top: 20px;
    }
    
    .hero-badge {
        height: 35px;
    }
    
    .badges-strip {
        gap: 12px;
        padding: 12px 15px;
    }
    
    .badge {
        height: 35px;
    }

    .promo-section {
        padding: 30px 0;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .promo-cta {
        padding: 12px 24px;
        font-size: 13px;
        min-width: 140px;
    }
    
    .promo-content {
        padding: 0 10px;
        gap: 30px;
    }
    
    .promo-subtitle {
        font-size: 0.9rem;
    }
    
    .promo-text {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    background: url('../assets/images/sswlay.png') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-left {
    padding-right: 20px;
    display: block;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 25px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.services-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 25px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.services-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.services-features li {
    font-size: 1rem;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-left: 25px;
    position: relative;
}

.services-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFB903;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* How We Wash section uses numbers instead of checkmarks */
.how-wash-features {
    counter-reset: list-counter;
}

.how-wash-features li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
}

.services-features li strong {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 700;
    color: #19213A;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1px;
}

/* Process Steps Styling */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid #19213A;
}

.step-number {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #19213A;
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #19213A;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.step-content p {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.process-cta {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #19213A;
    margin: 30px 0 0 0;
    text-align: center;
    font-weight: 500;
}

.services-title .highlight {
    color: #FFB903;
}

.services-conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #19213A;
    font-weight: 500;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.services-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Services CTA Buttons */
.services-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.services-cta-buttons .hero-cta {
    margin: 0;
}

/* Responsive adjustments for services CTAs */
@media (max-width: 768px) {
    .services-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* Process steps responsive adjustments */
    .process-steps {
        margin: 20px 0;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .step-number {
        font-size: 2.5rem;
        min-width: 40px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .services-cta-buttons .hero-cta {
        width: 100%;
        max-width: 300px;
    }
}

.services-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 33, 58, 0.15);
}

/* Ensure left column image is properly aligned */
.services-left .services-image {
    margin: 0;
    display: block;
    width: 100%;
    text-align: left;
}

/* Center the image within the left column */
.services-left .services-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Specific styling for hw1.jpg image - move down by 30% */
.hw1-image {
    margin-top: 30%;
}

/* Styling for how-clean-features (used in service pages) */
.how-clean-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-clean-features li {
    margin-bottom: 20px;
    padding-left: 0;
    position: relative;
}

.how-clean-features li::before {
    content: "✓";
    color: #FFB903;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: -25px;
    top: 0;
}

.how-clean-features li strong {
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 5px;
    display: block;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Services Section Responsive */
@media (max-width: 1024px) {
    .services-content {
        gap: 40px;
        padding: 0 15px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .services-section {
        padding: 50px 0;
    }
    
    .services-left {
        padding-right: 0;
        text-align: center;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .services-features li {
        text-align: left;
    }
    
    .services-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .services-description {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .services-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .services-conclusion {
        font-size: 1rem;
    }
    
    .services-image {
        max-width: 100%;
    }
}

/* All Services Section */
.all-services-section {
    background: url('../assets/images/sswlay.png') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.all-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.all-services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

.all-services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 60px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(25, 33, 58, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 33, 58, 0.15);
    border-color: #FFB903;
}

.service-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19213A;
    border-bottom: 1px solid #e9ecef;
}

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

.service-icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    transition: all 0.3s ease;
}

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

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* All Services Section Responsive */
@media (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }
    
    .all-services-section {
        padding: 60px 0;
    }
    
    .all-services-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .all-services-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .all-services-section {
        padding: 50px 0;
    }
    
    .all-services-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .all-services-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .all-services-section {
        padding: 40px 0;
    }
    
    .all-services-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .all-services-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

/* Results/Our Work Section - Photo Gallery */
.results-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.results-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(25, 33, 58, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(25, 33, 58, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    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.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 33, 58, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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



.results-cta {
    text-align: center;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #FFB903;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 185, 3, 0.8);
    border-color: #FFB903;
    transform: scale(1.1);
}

/* Modal responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95%;
        padding: 15px;
    }
    
    .close-modal {
        top: 10px;
        right: 25px;
        font-size: 35px;
    }
    
    .modal-navigation {
        bottom: 20px;
    }
    
    .nav-btn {
        padding: 12px 16px;
        font-size: 20px;
    }
}

/* Video Testimonials Section */
.testimonials-section {
    background: #19213A;
    padding: 80px 0;
    color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #FFB903;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.video-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}



.testimonial-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e9ecef;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Google Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #FFB903 0%, #FFD54F 100%);
    padding: 80px 0;
    color: #19213A;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #19213A;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(25, 33, 58, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 10px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 15px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stars {
    font-size: 1.2rem;
    color: #FFB903;
}

.reviews-image-container {
    text-align: center;
    margin: 40px 0;
}

.reviews-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(25, 33, 58, 0.15);
}

.reviews-cta {
    text-align: center;
}

/* About SSW Section */
.about-section {
    background: url('../assets/images/sswlay.png') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 25px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-tagline {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #19213A;
    margin-bottom: 30px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-style: italic;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #FFB903;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 185, 3, 0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.feature-icon svg path {
    fill: currentColor;
    stroke: none;
}

.icon-symbol {
    font-size: 18px;
    font-weight: bold;
    color: #FFB903;
    display: block;
    text-align: center;
    line-height: 32px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}



.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #19213A;
    margin-bottom: 8px;
    font-family: 'Gotham', 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.feature-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(25, 33, 58, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accreditation Section */
.accreditation-section {
    background: url('../assets/images/sswlay.png') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.accreditation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.accreditation-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.accreditation-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #19213A;
    margin-bottom: 50px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accreditation-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.accreditation-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}



/* Final CTA Section */
.final-cta-section {
    background: url('../assets/images/sswlay.png') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    padding: 40px 0;
    color: white;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.final-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #19213A;
    padding: 30px 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
}

.final-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #FFB903;
    text-transform: uppercase;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1rem;
    color: white;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 600px;
    margin: 0;
}

.cta-button-container {
    flex-shrink: 0;
}

.final-cta-button {
    background: #FFB903;
    color: #19213A;
    border: 2px solid #19213A;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.final-cta-button:hover {
    background: #E6A700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 185, 3, 0.4);
}

.sunburst-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background: #19213A;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    background-image: 
        url('../assets/images/sswlay.png'),
        radial-gradient(circle at 20% 80%, rgba(25, 33, 58, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 33, 58, 0.6) 0%, transparent 50%);
    background-size: 50%, auto, auto;
    background-position: left, 20% 80%, 80% 20%;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

.footer-separator {
    height: 3px;
    background: #FFB903;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Designer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #FFB903;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-links a:hover {
    color: #FFB903;
}

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

.footer-logo-img {
    height: 96px;
    width: auto;
    object-fit: contain;
}

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

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: white;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #FFB903;
    flex-shrink: 0;
}

.footer-cta-button {
    background: #FFB903;
    color: #19213A;
    border: 2px solid #19213A;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-cta-button:hover {
    background: #E6A700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 185, 3, 0.4);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .accreditation-logos {
        gap: 30px;
    }
    
    .accreditation-title {
        font-size: 1.6rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid,
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .accreditation-section {
        padding: 40px 0;
    }
    
    .accreditation-logos {
        flex-direction: column;
        gap: 30px;
    }
    
    .accreditation-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .accreditation-logo-img {
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid,
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .results-section,
    .testimonials-section,
    .reviews-section,
    .about-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .final-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .final-cta-subtitle {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .logo-text {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .results-section,
    .testimonials-section,
    .reviews-section,
    .about-section,
    .final-cta-section {
        padding: 40px 0;
    }
    
    .results-title,
    .testimonials-title,
    .reviews-title,
    .about-title,
    .final-cta-title {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}






