/* ========================================
   ProTeam Garage Door - Main Stylesheet
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0F4C3A;
    --primary-dark: #0A3328;
    --primary-light: #1A6B52;
    --accent: #2ECC71;
    --accent-dark: #27AE60;
    --accent-light: #58D68D;
    --dark: #0D1B16;
    --dark-gray: #2C3E36;
    --gray: #5F7A6E;
    --light-gray: #D5E0DA;
    --lighter-gray: #EDF2EF;
    --white: #FFFFFF;
    --success: #2ECC71;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.18);
    --shadow-glow: 0 0 30px rgba(46,204,113,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(46,204,113,0.2); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ---------- Utilities ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.highlight {
    color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.btn-primary {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #27AE60, #219A52);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46,204,113,0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.top-bar-right a:hover {
    color: var(--accent-light);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 0.75rem;
}

.top-bar-social a:hover {
    background: var(--accent);
    color: var(--white);
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
}

.logo-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark-gray);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, rgba(10,51,40,0.92) 0%, rgba(15,76,58,0.82) 40%, rgba(26,107,82,0.72) 100%),
                url('../images/wood-grain-door.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.03)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></linearGradient></defs><rect fill="url(%23g)" width="1440" height="900"/><circle cx="200" cy="150" r="300" fill="rgba(46,204,113,0.05)"/><circle cx="1200" cy="600" r="400" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(46,204,113,0.1) 0%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46,204,113,0.15);
    backdrop-filter: blur(10px);
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 50px;
    border: 1px solid rgba(46,204,113,0.25);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge i {
    color: #F39C12;
    animation: pulse-glow 2s infinite;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .highlight {
    color: var(--accent-light);
    background: linear-gradient(135deg, #2ECC71, #58D68D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 660px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 52px;
    animation: fadeInUp 0.7s ease 0.3s both;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    background: linear-gradient(135deg, #27AE60, #2ECC71, #1ABC9C);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 4s infinite;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    color: var(--white);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- How It Works ---------- */
.how-it-works {
    background: linear-gradient(180deg, var(--lighter-gray) 0%, #E8F0EC 100%);
    position: relative;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex: 1;
    max-width: 260px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46,204,113,0.15);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(46,204,113,0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin: 8px auto 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--accent);
    font-size: 1.2rem;
    padding: 0 8px;
    margin-top: 60px;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .step-card {
        max-width: 400px;
        width: 100%;
    }
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
        padding: 0;
    }
}

/* ---------- Services ---------- */
.services {
    background: var(--lighter-gray);
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46,204,113,0.2);
}

.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent-dark);
    gap: 10px;
}

/* ---------- Why Choose Us ---------- */
.why-us {
    background: var(--white);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-xl);
    z-index: 0;
    opacity: 0.3;
}

.why-us-image img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.why-us-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-us-content > p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--success);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---------- Hurricane Section ---------- */
.hurricane {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.hurricane .section-badge {
    background: rgba(46,204,113,0.2);
    border: 1px solid rgba(46,204,113,0.3);
    color: var(--accent-light);
}

.hurricane .section-header h2 {
    color: var(--white);
}

.hurricane .section-header p {
    color: rgba(255,255,255,0.7);
}

.hurricane-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.hurricane-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.hurricane-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.hurricane-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hurricane-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.hurricane-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hurricane-cta {
    text-align: center;
    padding-top: 20px;
}

.hurricane-cta-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hurricane-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.big-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-light);
}

.hurricane-stat span:last-child {
    max-width: 200px;
    text-align: left;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery {
    background: linear-gradient(180deg, #f7faf8 0%, var(--lighter-gray) 100%);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46,204,113,0.2);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-caption {
    padding: 18px 20px;
    background: var(--white);
}

.gallery-caption h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--dark);
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    gap: 8px;
    transition: var(--transition);
}

.gallery-placeholder i {
    font-size: 2.5rem;
}

.gallery-placeholder span {
    font-weight: 600;
    font-size: 1rem;
}

.gallery-placeholder p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

/* ---------- Testimonials ---------- */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(46,204,113,0.12);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(46,204,113,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.testimonial-stars {
    color: #F39C12;
    font-size: 1rem;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray);
}

.google-icon {
    margin-left: auto;
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.platform:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.platform > i {
    font-size: 2rem;
    color: var(--primary);
}

.platform strong {
    display: block;
    font-size: 0.9rem;
}

.platform-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #F39C12;
    font-size: 0.85rem;
}

.platform-stars span {
    margin-left: 4px;
    color: var(--dark-gray);
    font-weight: 700;
}

/* ---------- Brands ---------- */
.brands {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.brands-title {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.brand-item {
    padding: 18px 36px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.brand-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ---------- Contact ---------- */
.contact {
    background: var(--lighter-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-item i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.contact-detail-item a,
.contact-detail-item span {
    font-size: 0.95rem;
    color: var(--gray);
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.financing-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
}

.financing-badge i {
    font-size: 2rem;
}

.financing-badge strong {
    display: block;
    font-size: 1rem;
}

.financing-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-gray);
    transition: var(--transition);
    background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B7C3;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ---------- Service Areas ---------- */
.service-areas {
    background: var(--white);
}

.service-areas h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 28px;
    color: var(--primary);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.areas-grid span {
    padding: 8px 20px;
    background: var(--lighter-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.areas-grid span:hover {
    background: var(--primary);
    color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo .logo-icon {
    color: var(--accent);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    padding: 5px 0;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-license {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-license p {
    font-size: 0.82rem;
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--accent-light);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 25px rgba(46,204,113,0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background: linear-gradient(135deg, #27AE60, #219A52);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(46,204,113,0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ---------- Navigation Dropdowns ---------- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle i {
    font-size: 0.65rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--lighter-gray);
    color: var(--accent);
    padding-left: 24px;
}

.nav-dropdown-mega {
    min-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,51,40,0.88) 0%, rgba(15,76,58,0.82) 50%, rgba(26,107,82,0.78) 100%),
                url('../images/modern-black-slim-window.jpg') center/cover no-repeat;
    padding: 80px 0 60px;
    color: var(--white);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(46,204,113,0.08) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero h1 .highlight {
    color: var(--accent-light);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ---------- Content Layout (About, Service, Location pages) ---------- */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    margin-top: 32px;
}

.content-main p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-main ul, .content-main ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.content-main li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

/* ---------- Sidebar ---------- */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-cta .btn {
    margin-bottom: 10px;
}

.sidebar-cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
}

.sidebar-cta .btn-outline:hover {
    border-color: var(--white);
}

.sidebar-stats {
    background: var(--lighter-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.sidebar-stat {
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-stat:last-child {
    border-bottom: none;
}

.sidebar-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
}

.sidebar-stat span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ---------- Values Grid (About page) ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.value-card {
    background: var(--lighter-gray);
    padding: 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, #27AE60, #2ECC71, #1ABC9C);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--accent);
}

.cta-banner .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.cta-banner .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(15, 76, 58, 0.35);
}

/* ---------- Area Links ---------- */
.areas-grid-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-link {
    padding: 10px 22px;
    background: var(--lighter-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
    border: 1px solid transparent;
}

.area-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ---------- Contact Benefits (Contact page) ---------- */
.contact-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.contact-benefits i {
    color: var(--success);
    font-size: 1rem;
}

/* ---------- Services List (Service/Location inner pages) ---------- */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--lighter-gray);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
    transition: var(--transition);
}

.services-list a:hover {
    background: var(--primary);
    color: var(--white);
}

.services-list a i {
    color: var(--accent);
    font-size: 1rem;
}

.services-list a:hover i {
    color: var(--white);
}

/* ---------- Location Cities Grid (Location pages) ---------- */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.cities-grid a {
    padding: 10px 16px;
    background: var(--lighter-gray);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
    transition: var(--transition);
}

.cities-grid a:hover {
    background: var(--accent);
    color: var(--white);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hurricane-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        display: none;
        background: var(--lighter-gray);
        border-radius: var(--radius-sm);
        margin-bottom: 8px;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-mega {
        min-width: auto;
        grid-template-columns: 1fr;
    }

    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

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

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

    .why-us-layout {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-image img {
        height: 300px;
    }

    .hurricane-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hurricane-cta-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .hurricane-stat {
        flex-direction: column;
        text-align: center;
    }

    .hurricane-stat span:last-child {
        text-align: center;
    }

    .review-platforms {
        gap: 16px;
    }

    .platform {
        flex: 1 1 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-card-img { height: 160px; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

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

    .btn-lg {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

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

    .contact-form {
        padding: 28px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
