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

:root {
    /* Blue, White, and Grey Color Palette */
    --primary-blue: #0066cc;
    --primary-light: #3399ff;
    --primary-dark: #004499;
    --accent-blue: #0088ff;
    --light-blue: #e6f2ff;
    --pale-blue: #f0f7ff;
    
    /* Minimal Grey Tones */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #808080;
    --text-muted: #999999;
    --white: #ffffff;
    --grey-50: #fafafa;
    --grey-100: #f5f5f5;
    --grey-200: #eeeeee;
    --grey-300: #e0e0e0;
    --grey-400: #cccccc;
    --grey-500: #999999;
    --grey-600: #666666;
    --grey-700: #4a4a4a;
    --grey-800: #333333;
    --grey-900: #1a1a1a;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-section: #f5f5f5;
    --bg-dark: #1a1a1a;
    --bg-gradient: linear-gradient(135deg, #0066cc 0%, #0088ff 50%, #3399ff 100%);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: transparent;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* General H1 Style */
h1 {
    background: rgba(0, 102, 204, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-200);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo a:hover {
    color: var(--primary-dark);
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.logo-text {
    display: none;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-800) 50%, var(--primary-dark) 100%);
    color: white;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 136, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Hero Section with Video Background */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.hero-video .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 0 var(--space-lg);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(0, 102, 204, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
}

.hero p {
    font-size: 20px;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* Buttons */
.btn {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background: var(--light-blue);
}

.video-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-blue);
}

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

.video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
}

.video-placeholder {
    width: 100%;
    height: 225px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-fallback {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-fallback:hover .play-button {
    background: var(--primary-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    color: var(--primary-blue);
    font-size: 18px;
    padding: 20px;
    font-weight: 600;
    background: white;
}

/* Featured Video Section */
.featured-video-section {
    padding: 60px 20px;
    background: var(--gray-dark);
}

.featured-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: transparent;
}

.about .container {
    max-width: 900px;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: var(--space-2xl) var(--space-lg);
    background: transparent;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.services h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    text-align: center;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 18px;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: transparent;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid var(--grey-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

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

.service-card h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: var(--space-md);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Projects Section */
.projects {
    padding: var(--space-2xl) var(--space-lg);
    background: transparent;
}

.projects h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    text-align: center;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.project-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid var(--grey-200);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
    opacity: 1;
    z-index: auto;
}

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

.project-card h3 {
    color: var(--primary-blue);
    font-size: 20px;
    padding: var(--space-lg) var(--space-lg) var(--space-sm);
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    z-index: auto;
}

.project-card p {
    color: var(--text-medium);
    font-size: 15px;
    padding: 0 var(--space-lg) var(--space-lg);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team {
    padding: 80px 20px;
    background: transparent;
}

.team h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.team-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.team-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-section);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.contact h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    text-align: center;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background: transparent;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-200);
}

.contact-info h3 {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.3);
    font-size: 22px;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    letter-spacing: -0.3px;
    padding: 8px 16px;
    border-radius: 0;
    display: inline-block;
}

.contact-info p {
    color: var(--text-medium);
    font-size: 16px;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: transparent;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-200);
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--grey-50);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: var(--white);
}

.contact-form button {
    margin-top: var(--space-md);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-800) 100%);
    color: white;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer p {
    font-size: 15px;
    margin-bottom: var(--space-sm);
    opacity: 0.9;
    font-weight: 500;
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* Page Content Styling */
.page-content {
    padding: 80px 20px;
    background: transparent;
}

.page-content .container {
    max-width: 900px;
}

.page-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 0;
    display: inline-block;
}

.page-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    background: rgba(0, 102, 204, 0.3);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 0;
    display: inline-block;
}

.page-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.page-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Values & Features Lists */
.values-list,
.features-list,
.territories-list,
.why-choose,
.coverage-list,
.exclusions-list,
.maintenance-list,
.documents-list,
.contact-benefits,
.commitment-list,
.service-area-list,
.trades-list {
    list-style: none;
    padding: 0;
}

.values-list li,
.features-list li,
.territories-list li,
.why-choose li,
.coverage-list li,
.exclusions-list li,
.maintenance-list li,
.documents-list li,
.contact-benefits li,
.commitment-list li,
.service-area-list li,
.trades-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.values-list li:before,
.features-list li:before,
.territories-list li:before,
.why-choose li:before,
.coverage-list li:before,
.exclusions-list li:before,
.maintenance-list li:before,
.documents-list li:before,
.contact-benefits li:before,
.commitment-list li:before,
.service-area-list li:before,
.trades-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

/* Service Details */
.service-detail {
    background: var(--gray-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.service-detail h3 {
    margin-top: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Project Image Placeholder */
.project-image-placeholder {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-blue);
}

.project-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Project Details */
.project-detail {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.project-detail h4 {
    margin-top: 0;
}

.project-highlights {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.project-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.project-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
}

/* Stats List */
.stats-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stats-list li {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.stats-list strong {
    display: block;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Process List */
.process-list {
    list-style: none;
    padding: 0;
    margin-left: 0;
    counter-reset: step-counter;
}

.process-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light-blue);
    border-radius: 8px;
    counter-increment: step-counter;
    padding-left: 50px;
    position: relative;
}

.process-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Warranty Items */
.warranty-item {
    background: var(--light-blue);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.warranty-item h4 {
    margin-top: 0;
}

.warranty-details {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.warranty-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.warranty-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Claims Process */
.claims-process {
    list-style: none;
    padding: 0;
    margin-left: 0;
    counter-reset: claims-counter;
}

.claims-process li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    counter-increment: claims-counter;
}

.claims-process li:before {
    content: counter(claims-counter);
    position: absolute;
    left: 0;
    background: var(--primary-blue);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-box {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
}

.contact-box h3 {
    margin-top: 0;
}

/* Contact Form */
.contact-form-page,
.subcontractor-form {
    background: var(--light-blue);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: var(--light-blue);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Partnership Benefits */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-item {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit-item h4 {
    margin-top: 0;
    color: var(--primary-blue);
}

/* Requirements Section */
.requirements-section {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.requirements-section h4 {
    margin-top: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-bottom: 25px;
}

.requirements-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Application Process */
.application-process {
    list-style: none;
    padding: 0;
    margin-left: 0;
    counter-reset: app-counter;
}

.application-process li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light-blue);
    border-radius: 8px;
    counter-increment: app-counter;
    padding-left: 50px;
    position: relative;
}

.application-process li:before {
    content: counter(app-counter);
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--primary-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-section p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
}

/* TRITON2 Background Overlay - Transparent Page Background */

.triton-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
}

.triton-background-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero .triton-background-overlay,
.hero-video .triton-background-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

.triton-watermark {
    display: none;
}

@media (max-width: 768px) {
    .triton-background-overlay {
        opacity: 0.05;
    }
    
    .triton-background-overlay img {
        opacity: 0.06;
    }
}

@media (max-width: 480px) {
    .triton-background-overlay {
        opacity: 0.03;
    }
    
    .triton-background-overlay img {
        opacity: 0.04;
    }
}

/* Logos Section */
.logos-section {
    background: var(--light-blue);
    padding: var(--space-xl) 0;
    border-top: 3px solid var(--primary-blue);
    border-bottom: 3px solid var(--primary-blue);
    margin: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 102, 204, 0.3);
    padding: 10px 20px;
    border-radius: 0;
    display: inline-block;
}

.logos-section .logos-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: var(--space-lg) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding: 0 var(--space-md) !important;
}

.logos-section .logos-grid .logo-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: var(--space-md) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease !important;
    width: 300px !important;
    height: 116px !important;
    position: relative !important;
    flex-shrink: 0 !important;
    min-width: 300px !important;
    max-width: 300px !important;
    min-height: 116px !important;
    max-height: 116px !important;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logos-section .logos-grid .logo-item img {
    max-height: 80px !important;
    max-width: 260px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
    display: block !important;
    flex-shrink: 0 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.logo-item span {
    font-size: 0px;
    font-weight: 0;
    color: transparent;
}

/* Desktop-specific logo alignment */
@media (min-width: 769px) {
    .logos-section .logos-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: var(--space-lg) !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow-x: visible;
        padding: 0 var(--space-md) !important;
    }
    
    .logo-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: var(--space-md) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: var(--radius-lg) !important;
        box-shadow: var(--shadow-sm) !important;
        transition: all 0.3s ease !important;
        width: 361px !important;
        height: 140px !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 361px !important;
        max-width: 361px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }
    
    .logo-item img {
        max-height: 100px !important;
        max-width: 321px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto var(--space-sm) auto !important;
        display: block !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }
    
    .logo-item {
        width: 300px;
        height: 116px;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: var(--radius-lg) !important;
        box-shadow: var(--shadow-sm) !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        flex-shrink: 0 !important;
        min-width: 300px !important;
        max-width: 300px !important;
        min-height: 116px !important;
        max-height: 116px !important;
    }
    
    .logo-item img {
        max-height: 80px !important;
        max-width: 260px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
        flex-shrink: 0 !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: var(--space-sm);
        padding: 0 var(--space-xs);
    }
    
    .logo-item {
        width: 300px;
        height: 116px;
        padding: var(--space-sm);
        position: relative !important;
        min-width: 300px !important;
        max-width: 300px !important;
        min-height: 116px !important;
        max-height: 116px !important;
    }
    
    .logo-item img {
        max-height: 80px;
        max-width: 260px;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* Duplicate logo rules removed - using enhanced rules above */

/* Enhanced Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Image Fade-in Animations */
.image-fade-in {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(5px);
    transition: all 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-fade-in.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.image-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Text-specific animations */
.text-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.heading-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.heading-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered fade-in for lists */
.stagger-fade-in > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-fade-in.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-fade-in.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-fade-in.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-fade-in.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-fade-in.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-fade-in.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-fade-in.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* Color Box Backgrounds */
.color-box {
    position: relative;
    display: inline-block;
}

.color-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: var(--primary-blue);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
    z-index: -1;
    border-radius: 4px;
}

.color-box.visible::before {
    opacity: 0.15;
    transform: scale(1);
}

.color-box.accent::before {
    background: var(--dark-blue);
}

.color-box.light::before {
    background: var(--light-blue);
    opacity: 0.3;
}

/* Staggered Animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Responsive Page Content */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 20px;
    }

    .page-content h2 {
        font-size: 28px;
    }

    .page-content h3 {
        font-size: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
    }

    .contact-form-page,
    .subcontractor-form {
        padding: 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* FINAL: Force hide Triton2 overlay in hero sections */
.hero .triton-background-overlay,
.hero-video .triton-background-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}
