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

        :root {
            --midnight: #0A1628;
            --deep-blue: #1A2F4F;
            --electric: #00D9FF;
            --warm-orange: #FF6B35;
            --off-white: #F8F9FA;
            --silver: #C4C4C4;
            --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1A2F4F 100%);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--midnight);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--off-white);
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            animation: slideDown 0.6s ease-out;
        }

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

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }


        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .header-logo-img {
            height: 45px;
            width: auto;
            display: block;
        }

        .logo-text {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-pacific {
            color: var(--electric);
            font-weight: 800;
            font-size: 2rem;
        }

        .logo-wt {
            color: #4A4A4A;
            font-weight: 700;
            font-size: 1.5rem;
            text-shadow: 
                -1px -1px 0 white,
                1px -1px 0 white,
                -1px 1px 0 white,
                1px 1px 0 white;
        }


        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .header-social-links {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            align-items: center;
        }

        .header-social-links .social-link {
            width: 35px;
            height: 35px;
        }

        .header-social-links .social-link img {
            width: 20px;
            height: 20px;
        }

        .cta-header {
            background: transparent;
            color: var(--electric);
            border: 2px solid var(--electric);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cta-header:hover {
            background: var(--electric);
            color: var(--midnight);
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 10rem 2rem 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-text {
            width: 100%;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

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

        .hero-logo {
            max-width: 400px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
        }

        .hero-tagline {
            font-family: 'DM Sans', sans-serif;
            font-size: 2rem;
            font-weight: 400;
            color: white;
            margin: 0 0 2.5rem 0;
            letter-spacing: 0.5px;
        }

        .location-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.2);
            border: 2px solid var(--warm-orange);
            color: var(--warm-orange);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .location-badge:hover {
            background: rgba(255, 107, 53, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--silver);
            margin: 2rem 0;
            line-height: 1.6;
            max-width: 900px;
        }

        .contact-quick {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem auto;
            backdrop-filter: blur(10px);
            max-width: 900px;
        }

        .contact-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--warm-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-label {
            font-size: 0.75rem;
            color: var(--silver);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .contact-value {
            color: var(--off-white);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .contact-value a {
            color: var(--electric);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--warm-orange);
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .btn-primary {
            background: var(--warm-orange);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--electric);
            padding: 1.2rem 2.5rem;
            border: 2px solid var(--electric);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--electric);
            color: var(--midnight);
            transform: translateY(-3px);
        }

        .trust-indicators {
            display: flex;
            gap: 3rem;
            padding: 2rem 0;
            justify-content: center;
            margin: 2rem 0;
        }

        .trust-item {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .trust-item:nth-child(2) {
            animation-delay: 0.7s;
        }

        .trust-item:nth-child(3) {
            animation-delay: 0.8s;
        }

        .trust-number {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--electric);
            line-height: 1;
        }

        .trust-label {
            color: var(--silver);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .hero-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            animation: fadeInRight 0.8s ease-out 0.4s both;
        }

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

        .hero-image img,
        .hero-image video {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .floating-badges {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: -4rem 0 2rem 0;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .floating-badge {
            background: var(--midnight);
            color: white;
            padding: 1.5rem;
            border-radius: 50%;
            width: 160px;
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        .floating-badge:nth-child(1) {
            background: linear-gradient(90deg, rgba(173, 216, 230, 0.3) 0%, rgba(0, 150, 200, 0.6) 100%);
            box-shadow: 0 10px 30px rgba(0, 150, 200, 0.3);
        }

        .floating-badge:nth-child(2) {
            background: linear-gradient(90deg, rgba(0, 150, 200, 0.6) 0%, rgba(136, 136, 136, 0.7) 100%);
            box-shadow: 0 10px 30px rgba(0, 150, 200, 0.3);
            animation-delay: 0.5s;
        }

        .floating-badge:nth-child(3) {
            background: linear-gradient(90deg, rgba(136, 136, 136, 0.7) 0%, rgba(74, 74, 74, 0.85) 100%);
            box-shadow: 0 10px 30px rgba(74, 74, 74, 0.4);
            animation-delay: 1s;
        }

        .floating-badge:nth-child(4) {
            background: linear-gradient(90deg, rgba(74, 74, 74, 0.85) 0%, rgba(20, 20, 20, 0.95) 100%);
            box-shadow: 0 10px 30px rgba(20, 20, 20, 0.5);
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .badge-text {
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
            line-height: 1.2;
        }

        .badge-number {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
        }

        /* Services Section */
        .services {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
        }

        .section-header {
            max-width: 1400px;
            margin: 0 auto 4.5rem;
            text-align: center;
        }

        .section-label {
            color: var(--warm-orange);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--midnight);
            line-height: 1.5;
            letter-spacing: -1px;
            padding-bottom: 0.6rem;
            margin-bottom: 0.5rem;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.5);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--electric), var(--warm-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--electric);
            background: rgba(42, 42, 42, 0.9);
        }

        .service-card:hover h3 {
            color: white;
        }

        .service-card:hover p {
            color: white;
        }

        .service-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: all 0.5s ease;
            position: relative;
        }

        .service-content {
            padding: 2rem 2rem 2.5rem 2rem;
        }

        .service-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--midnight);
            margin-bottom: 1.2rem;
            line-height: 1.6;
            padding-bottom: 0.4rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Tint Removal card - inverse styling */
        .service-card.tint-removal {
            background: rgba(42, 42, 42, 0.6);
        }

        .service-card.tint-removal h3 {
            color: white;
        }

        .service-card.tint-removal p {
            color: white;
        }

        .service-card.tint-removal:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .service-card.tint-removal:hover h3 {
            color: var(--midnight);
        }

        .service-card.tint-removal:hover p {
            color: #666;
        }

        .services-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .services-cta .btn-primary {
            font-size: 1.2rem;
            padding: 1.4rem 3rem;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-carousel {
            position: relative;
            padding: 3rem 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 1rem;
        }

        .testimonial-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .testimonial-card:hover {
            border-color: var(--electric);
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            background: rgba(42, 42, 42, 0.9);
        }

        .testimonial-card:hover .testimonial-text {
            color: white;
        }

        .testimonial-card:hover .author-details h4 {
            color: white;
        }

        .testimonial-card:hover .author-details p {
            color: var(--silver);
        }

        .testimonial-stars {
            color: var(--warm-orange);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.3rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1.5rem;
            border-top: 2px solid #f0f0f0;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            font-family: 'Syne', sans-serif;
        }

        .author-details h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: var(--midnight);
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }

        .author-details p {
            color: #666;
            font-size: 0.9rem;
        }

        .review-source {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 217, 255, 0.1);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--deep-blue);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--electric);
            color: var(--electric);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .carousel-btn:hover {
            background: var(--electric);
            color: white;
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-indicators {
            display: flex;
            gap: 0.8rem;
        }

        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: var(--electric);
            width: 30px;
            border-radius: 6px;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 8rem 2rem;
            background: var(--midnight);
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(0, 217, 255, 0.05));
        }

        .why-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .why-text h2 {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--off-white);
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .why-text h2 span {
            color: var(--electric);
        }

        .features-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--warm-orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .feature-content h4 {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--off-white);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: var(--silver);
            line-height: 1.7;
        }

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

        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .stat-number {
            font-family: 'Syne', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--electric);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--silver);
            font-size: 1rem;
        }

        /* Footer */

        /* Quote Form Section */

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

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }
        .quote-form-section {
            padding: 8rem 2rem;
            background: var(--gradient-dark);
        }

        .quote-form-section .section-title {
            color: var(--off-white);
            text-align: center;
        }

        .quote-form-section .section-subtitle {
            text-align: center;
            color: var(--silver);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .quote-form {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

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

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .quote-form label {
            color: var(--off-white);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .quote-form input,
        .quote-form select,
        .quote-form textarea {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--off-white);
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .quote-form input:focus,
        .quote-form select:focus,
        .quote-form textarea:focus {
            outline: none;
            border-color: var(--electric);
            background: rgba(255, 255, 255, 0.08);
        }

        .quote-form input::placeholder,
        .quote-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .quote-form select {
            cursor: pointer;
        }

        .quote-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .quote-form button[type="submit"] {
            grid-column: 1 / -1;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            margin-top: 1rem;
            justify-self: center;
        }

        @media (max-width: 768px) {
            .quote-form {
                grid-template-columns: 1fr;
                padding: 2rem;
            }
        }
        footer {
            background: var(--midnight);
            color: var(--off-white);
            padding: 3rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .footer-brand {
            text-align: center;
        }

        .footer-brand h3 {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }

        .footer-brand .logo-pacific {
            color: var(--electric);
            font-size: 2rem;
        }

        .footer-brand .logo-wt {
            color: #4A4A4A;
            font-size: 1.5rem;
            text-shadow:
                -1px -1px 0 rgba(255, 255, 255, 0.5),
                1px -1px 0 rgba(255, 255, 255, 0.5),
                -1px 1px 0 rgba(255, 255, 255, 0.5),
                1px 1px 0 rgba(255, 255, 255, 0.5);
        }

        .footer-contact {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 800px;
            width: 100%;
        }

        .footer-contact h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            color: var(--electric);
            text-align: center;
        }

        .footer-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-contact-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            color: var(--silver);
        }

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

        .footer-contact-icon {
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .footer-contact-item a {
            color: var(--off-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--off-white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .social-link:hover {
            background: var(--electric);
            color: var(--midnight);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            text-align: center;
            color: var(--silver);
            font-size: 0.9rem;
        }

        /* Responsive */

        /* Mobile & Tablet Optimizations */
        @media (max-width: 1024px) {
            .hero {
                padding: 8rem 1.5rem 3rem;
            }

            .hero-logo {
                max-width: 300px;
            }

            .hero-tagline {
                font-size: 1.5rem;
            }

            .location-badge {
                font-size: 0.95rem;
                padding: 0.8rem 1.5rem;
            }

            .floating-badges {
                gap: 1rem;
                margin: -3rem 0 2rem 0;
            }

            .floating-badge {
                width: 130px;
                height: 130px;
                padding: 1rem;
            }

            .badge-number {
                font-size: 1.5rem;
            }

            .badge-text {
                font-size: 0.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .contact-quick {
                max-width: 600px;
                margin: 0 auto 2rem;
            }

            .cta-group {
                justify-content: center;
                gap: 1rem;
            }

            .trust-indicators {
                justify-content: center;
                gap: 2rem;
            }

            .section-title {
                font-size: 2.8rem;
            }

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

            .why-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .why-text h2 {
                font-size: 2.5rem;
                line-height: 1.3;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem 0;
            }

            nav {
                padding: 0 1rem;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .header-logo-img {
                height: 35px;
            }

            .header-social-links {
                display: none;
            }

            .hero {
                padding: 7rem 1rem 2rem;
                min-height: auto;
            }

            .hero-logo {
                max-width: 250px;
            }

            .hero-tagline {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .location-badge {
                font-size: 0.85rem;
                padding: 0.7rem 1.2rem;
            }

            .floating-badges {
                gap: 0.8rem;
                margin: -2rem 0 1.5rem 0;
            }

            .floating-badge {
                width: 100px;
                height: 100px;
                padding: 0.7rem;
            }

            .badge-number {
                font-size: 1.2rem;
            }

            .badge-text {
                font-size: 0.6rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .contact-quick {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .contact-item {
                font-size: 0.9rem;
            }

            .cta-group {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .trust-indicators {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .trust-item {
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-label {
                font-size: 0.8rem;
            }

            .services {
                padding: 4rem 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonials {
                padding: 4rem 1rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .why-choose {
                padding: 4rem 1rem;
            }

            .why-text h2 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .feature-item {
                gap: 1rem;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-box {
                padding: 1.5rem;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .feature-content h4 {
                font-size: 1.1rem;
                line-height: 1.3;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .location {
                padding: 4rem 1rem;
            }

            .contact-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-container {
                height: 300px;
            }

            .quote-form-section {
                padding: 4rem 1rem;
            }

            .quote-form {
                padding: 1.5rem;
                gap: 1.2rem;
            }

            footer {
                padding: 3rem 1rem 1rem;
            }

            .footer-contact-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .footer-social-links {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .hero-logo {
                max-width: 200px;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .location-badge {
                font-size: 0.75rem;
                padding: 0.6rem 1rem;
            }

            .floating-badges {
                gap: 0.5rem;
            }

            .floating-badge {
                width: 85px;
                height: 85px;
                padding: 0.6rem;
            }

            .badge-number {
                font-size: 1rem;
            }

            .badge-text {
                font-size: 0.55rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }

            .why-text h2 {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Desktop Enhancements */
        @media (min-width: 1400px) {
            .hero {
                padding: 12rem 3rem 5rem;
            }

            .container {
                max-width: 1400px;
            }

            .services-grid {
                max-width: 1500px;
            }

            .section-title {
                font-size: 4rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Performance Optimizations */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

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

        /* Media Fallback Styles */
        .media-fallback {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            color: var(--silver);
            border-radius: 15px;
            border: 2px dashed rgba(255, 255, 255, 0.2);
        }

        .media-fallback-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .media-fallback-text {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .service-image.error {
            display: none;
        }

        .service-card .image-container {
            position: relative;
            min-height: 250px;
            background: var(--gradient-dark);
            border-radius: 15px 15px 0 0;
            overflow: hidden;
        }

        .hero-video-container {
            position: relative;
            width: 100%;
        }

        .hero-video-fallback {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            border-radius: 20px;
            color: var(--off-white);
        }

        .hero-video-fallback .fallback-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0.6;
        }

        .hero-video-fallback .fallback-text {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Hero Banner Styling */
        .hero-banner {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
        }

        .hero-banner img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover; /* Crops to fill container while maintaining aspect ratio */
            object-position: center;
        }

        /* Desktop: Full width banner */
        @media (min-width: 1920px) {
            .hero-banner {
                max-height: 1080px;
                padding-bottom: 0;
                height: 1080px;
            }
        }

        /* Tablet and smaller: Maintain 16:9 ratio */
        @media (max-width: 768px) {
            .hero-banner {
                padding-bottom: 56.25%; /* Still 16:9 */
            }
        }

        @media (max-width: 768px) {
            .header-logo-img {
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .header-logo-img {
                height: 35px;
            }
        }


        .hero-main-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            line-height: 1;
        }

        .hero-pacific {
            font-family: 'Dancing Script', 'Brush Script MT', cursive;
            font-size: 12rem;
            font-weight: 700;
            color: #4FC3F7;
            letter-spacing: 0.1em;
            -webkit-text-stroke: 3px white;
            text-stroke: 3px white;
            paint-order: stroke fill;
            text-shadow: 
                0 0 40px rgba(79, 195, 247, 0.4),
                0 8px 25px rgba(0, 0, 0, 0.3),
                0 15px 50px rgba(0, 0, 0, 0.2);
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 30px rgba(79, 195, 247, 0.3));
        }

        .hero-window-tint {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            letter-spacing: 0.25em;
            color: #2A2A2A;
            text-transform: uppercase;
            -webkit-text-stroke: 2px white;
            text-stroke: 2px white;
            paint-order: stroke fill;
            text-shadow: 
                0 5px 15px rgba(0, 0, 0, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Mobile responsiveness */
        @media (max-width: 1024px) {
            .hero-pacific {
                font-size: 9rem;
                -webkit-text-stroke: 2.5px white;
            }
            
            .hero-window-tint {
                font-size: 3rem;
                -webkit-text-stroke: 2px white;
                letter-spacing: 0.2em;
            }
        }

        @media (max-width: 768px) {
            .hero-pacific {
                font-size: 6rem;
                -webkit-text-stroke: 2px white;
            }
            
            .hero-window-tint {
                font-size: 2rem;
                -webkit-text-stroke: 1.5px white;
                letter-spacing: 0.15em;
            }
        }

        @media (max-width: 480px) {
            .hero-pacific {
                font-size: 4rem;
                -webkit-text-stroke: 1.5px white;
            }
            
            .hero-window-tint {
                font-size: 1.5rem;
                -webkit-text-stroke: 1px white;
                letter-spacing: 0.1em;
            }
        }

        /* Styled Logo for Header */
        .logo-text-styled {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1;
        }

        .logo-pacific-styled {
            font-family: 'Dancing Script', 'Brush Script MT', cursive;
            font-size: 2.5rem;
            font-weight: 700;
            color: #4FC3F7;
            -webkit-text-stroke: 1.5px white;
            text-stroke: 1.5px white;
            paint-order: stroke fill;
            text-shadow: 
                0 0 20px rgba(79, 195, 247, 0.3),
                0 3px 10px rgba(0, 0, 0, 0.2);
            filter: drop-shadow(0 0 15px rgba(79, 195, 247, 0.2));
        }

        .logo-wt-styled {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 1rem;
            font-weight: 900;
            letter-spacing: 0.2em;
            color: #2A2A2A;
            text-transform: uppercase;
            -webkit-text-stroke: 1px white;
            text-stroke: 1px white;
            paint-order: stroke fill;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            margin-top: -0.3rem;
        }

        /* Footer Styled Logo */
        .footer-logo-styled {
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
            margin-bottom: 2rem;
        }

        .footer-logo-styled .logo-pacific-styled {
            font-size: 3.5rem;
        }

        .footer-logo-styled .logo-wt-styled {
            font-size: 1.5rem;
            margin-top: -0.5rem;
        }

        /* Mobile responsiveness for header logo */
        @media (max-width: 768px) {
            .logo-pacific-styled {
                font-size: 2rem;
                -webkit-text-stroke: 1px white;
            }

            .logo-wt-styled {
                font-size: 0.8rem;
            }

            .footer-logo-styled .logo-pacific-styled {
                font-size: 2.5rem;
            }

            .footer-logo-styled .logo-wt-styled {
                font-size: 1.2rem;
            }
        }
