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

:root {
    /* Brand Colors */
    --primary-navy: #0A2540;
    --primary-color: #0A2540;
    --dark-navy: #061B2E;
    --light-gray: #F5F7FA;
    --white: #FFFFFF;
    --cyan-accent: #00D4FF;
    --soft-cyan: #E0F7FF;

    /* Legacy color variables for compatibility */
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --accent-blue: #1A3C5A;
    --navy-dark: #001F3F;
    --navy-light: #1A3C5A;
    --navy-highlight: #E0F7FF;

    /* Typography */
    --font-primary: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-size-xl: clamp(2.5rem, 5vw, 3.5rem);
    --heading-size-lg: clamp(2rem, 4vw, 2.5rem);
    --heading-size-md: clamp(1.5rem, 3vw, 2rem);
    --heading-size-sm: clamp(1.25rem, 2vw, 1.5rem);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Contact Bar */
.contact-bar {
    background-color: #0A2540;
    padding: 0.5rem 2rem;
    text-align: right;
    font-size: 0.9rem;
}

.contact-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-bar a:hover {
    color: #00D4FF;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a3a52;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    overflow: visible !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 80px;
    overflow: visible !important;
    z-index: 9999;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 18px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 55px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 0.25rem;
}

/* Services Dropdown Menu */
.services-dropdown {
    position: relative;
    display: inline-block;
    z-index: 99999;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 31, 63, 0.98);
    min-width: 300px;
    border-radius: 12px;
    padding: 16px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 99999 !important;
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: white !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #00d4ff;
}

/* Mobile Dropdown Toggle */
@media (max-width: 768px) {
    .services-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        position: static;
        transform: none;
        box-shadow: none;
        background: #001F3F;
    }
}

.nav-menu li:last-child {
    margin-left: auto;
}

.cta-button {
    background-color: var(--cyan-accent) !important;
    color: var(--primary-navy) !important;
    border: 2px solid var(--cyan-accent) !important;
    padding: 12px 32px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all var(--transition-normal) !important;
    cursor: pointer !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    background-color: var(--primary-navy) !important;
    color: var(--cyan-accent) !important;
    border-color: var(--cyan-accent) !important;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Main Content */
main {
    margin-top: 120px;
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('./VIDEOS/VOYTECH\ SOLUTIONS/vt\ home\ page\ vid.mp4');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    box-sizing: border-box;
    overflow: visible;
    margin: 0;
    z-index: 1;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 27, 46, 0.7) 0%,
        rgba(10, 37, 64, 0.65) 50%,
        rgba(6, 27, 46, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 4.8rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    max-width: 900px;
    margin: 0 auto var(--spacing-2xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Page Hero (for non-homepage pages) */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background-image: url('./IMAGES/voytech\ header.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    box-sizing: border-box;
    overflow: visible;
    margin: 0;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 37, 64, 0.75) 0%,
        rgba(6, 27, 46, 0.7) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.3;
}

.page-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* ===== BRANDED STRIPED HERO ===== */
.branded-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #0A2540;
    background-image: url('./IMAGES/logo%20assets/voytech%20long%20logo.png');
    background-size: 60% auto;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.branded-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(10, 37, 64, 0.45) 0px,
        rgba(10, 37, 64, 0.45) 20px,
        rgba(0, 212, 255, 0.15) 20px,
        rgba(0, 212, 255, 0.15) 22px,
        rgba(10, 37, 64, 0.35) 22px,
        rgba(10, 37, 64, 0.35) 60px,
        rgba(0, 212, 255, 0.2) 60px,
        rgba(0, 212, 255, 0.2) 62px
    );
    z-index: 1;
}

.branded-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 37, 64, 0.15) 0%,
        rgba(6, 27, 46, 0.4) 100%
    );
    z-index: 2;
}

.branded-hero .page-hero-content,
.branded-hero .about-hero-content,
.branded-hero .branded-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.branded-hero .page-hero-content h1,
.branded-hero .about-hero-content h1,
.branded-hero .branded-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.branded-hero .page-hero-content p,
.branded-hero .about-hero-content p,
.branded-hero .branded-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
}


.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stats div {
    font-size: 1.3rem;
}

.stats span {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow:
        0 0 15px rgba(0, 212, 255, 0.6),
        0 0 30px rgba(0, 212, 255, 0.3);
    display: block;
    font-size: 3.2rem;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan-accent) 0%, var(--soft-cyan) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--cyan-accent);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card a {
    color: #0A2540;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #1A3C5A;
}

/* About Section */
.about-content {
    background-color: white;
}

.about-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-content p, .about-content ul {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-content ul {
    list-style-position: inside;
}

.about-content ul li {
    margin-bottom: 0.75rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0A2540;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0A2540;
}

.feature p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 50%, #001a2e 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.cta-section h2 {
    font-size: var(--heading-size-lg);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .cta-button {
    background-color: var(--white) !important;
    color: var(--primary-navy) !important;
    padding: 16px 48px !important;
    font-size: 1.05rem !important;
    position: relative;
    z-index: 1;
}

.cta-section .cta-button:hover {
    background-color: var(--cyan-accent) !important;
    color: var(--primary-navy) !important;
}

/* ===== PORTFOLIO TILES (image overlay style matching service cards) ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.75);
    z-index: 1;
    transition: background 0.3s ease;
}

.portfolio-item:hover::before {
    background: rgba(10, 25, 47, 0.65);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-item > * {
    position: relative;
    z-index: 2;
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-icon {
    background-color: rgba(0, 212, 255, 0.2);
}

.portfolio-icon svg {
    stroke: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-icon svg {
    stroke: #00D4FF;
    transform: scale(1.1);
}

.portfolio-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.quote-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.quote-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form select:focus {
    outline: none;
    border-color: #0A2540;
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.required {
    color: #d32f2f;
}

.optional {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: normal;
}

.quote-submit {
    width: 100% !important;
    margin-top: 1rem !important;
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0A2540;
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}

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

.submit-button {
    background-color: #001F3F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #0A2540;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00D4FF;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0A2540;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design - Tablet (768px and below) */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero .stats span {
        font-size: 2.4rem;
    }

    .hero .cta-button {
        font-size: 1rem !important;
        padding: 12px 28px !important;
    }

    .page-hero,
    .branded-hero {
        min-height: 40vh;
    }

    .branded-hero {
        background-size: 85% auto;
        padding: 100px 15px 60px;
    }

    .page-hero-content h1,
    .branded-hero .page-hero-content h1,
    .branded-hero .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .stats {
        gap: 2rem;
    }

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

    section {
        padding: 2.5rem 1rem;
    }

    .services-grid,
    .portfolio-grid,
    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Touch-friendly targets */
    button, .cta-button, a.cta-button {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a, .footer-section a {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .stats {
        gap: 1rem;
        flex-direction: column;
    }

    .stats span {
        font-size: 2rem;
    }

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

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .quote-form-wrapper {
        padding: 2rem 1rem;
    }
}

/* Animation Utility Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

/* Stagger animation for grids */
.grid-item {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Improved Form Styling */
.form-group input,
.form-group textarea,
.quote-form select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--cyan-accent);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    background-color: var(--soft-cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.submit-button, .cta-button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-full);
    padding: 12px 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Service Detail Pages */
.service-detail {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: white;
}

.service-detail .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.service-closing {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--navy-highlight);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.contact-section .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000p