/* ============================================
   SALMON HVAC - Premium Brand Stylesheet

   Brand Identity:
   - Primary Magenta: #e457f0 (vibrant, energetic)
   - Primary Ice Blue: #98f2ff (cool, technical)
   - Sharp, angular, boxy design (matches logo)
   - Modern tech-forward aesthetic
   - No rounded corners - geometric precision

   Typography:
   - Headings: Rajdhani (sharp, technical)
   - Body: Inter (modern, clean)
============================================ */

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

:root {
    /* Brand Colors */
    --brand-magenta: #e457f0;
    --brand-magenta-light: #ed7ff5;
    --brand-magenta-dark: #c93dd4;
    --brand-ice: #98f2ff;
    --brand-ice-light: #b8f6ff;
    --brand-ice-dark: #6eeaff;
    --brand-ice-soft: rgba(152, 242, 255, 0.12);
    --brand-magenta-soft: rgba(228, 87, 240, 0.12);

    /* Dark Tones */
    --dark-bg: #0d0d0d;
    --dark-surface: #1a1a1a;
    --dark-elevated: #242424;
    --dark-border: #333333;

    /* Light Tones */
    --light-bg: #f8f8f8;
    --light-surface: #ffffff;
    --light-muted: #f0f0f0;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #888888;
    --text-inverse: #ffffff;
    --text-inverse-muted: rgba(255, 255, 255, 0.7);

    /* Brand Gradients */
    --gradient-brand: linear-gradient(135deg, #e457f0 0%, #98f2ff 100%);
    --gradient-brand-reverse: linear-gradient(135deg, #98f2ff 0%, #e457f0 100%);
    --gradient-brand-horizontal: linear-gradient(90deg, #e457f0 0%, #98f2ff 100%);
    --gradient-brand-vertical: linear-gradient(180deg, #e457f0 0%, #98f2ff 100%);
    --gradient-dark: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-brand-magenta: 0 8px 30px rgba(228, 87, 240, 0.3);
    --shadow-brand-ice: 0 8px 30px rgba(152, 242, 255, 0.3);
    --shadow-glow-magenta: 0 0 30px rgba(228, 87, 240, 0.4);
    --shadow-glow-ice: 0 0 30px rgba(152, 242, 255, 0.4);

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 120px);
    --container-padding: clamp(20px, 4vw, 40px);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.25s ease;
    --transition-elegant: 0.4s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    font-size: 16px;
}

/* Sharp Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--dark-bg);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

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

ul { list-style: none; }

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

/* ============================================
   HEADER & NAVIGATION - Sharp & Angular
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark-bg);
    padding: 16px 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid var(--brand-ice);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.header.scrolled .logo img {
    height: 42px;
}

.logo-text {
    color: var(--text-inverse);
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: italic;
    transform: skewX(-8deg);
    display: inline-block;
}

.logo-text span {
    color: var(--brand-magenta);
    font-weight: 800;
}

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

.nav-link {
    color: var(--text-inverse-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--brand-ice);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-magenta);
    transition: var(--transition-smooth);
}

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

.nav-cta-btn {
    background: var(--brand-magenta);
    color: var(--text-inverse) !important;
    font-weight: 700;
    padding: 12px 28px;
    margin-left: 16px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-elegant);
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn::after { display: none; }

.nav-cta-btn:hover {
    background: var(--brand-magenta-light);
    box-shadow: var(--shadow-glow-magenta);
}

.nav-dropdown { position: relative; }

.nav-dropdown-toggle i {
    font-size: 0.6rem;
    margin-left: 6px;
    transition: var(--transition-smooth);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--dark-surface);
    min-width: 240px;
    border: 1px solid var(--dark-border);
    border-top: 2px solid var(--brand-ice);
    z-index: 200;
    padding: 8px;
}

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

.dropdown-menu a {
    display: block;
    color: var(--text-inverse-muted);
    padding: 12px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--dark-elevated);
    color: var(--brand-ice);
    border-left-color: var(--brand-magenta);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-ice);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid var(--brand-ice);
    transition: var(--transition-smooth);
}

.nav-phone:hover {
    background: var(--brand-ice);
    color: var(--dark-bg);
}

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

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--brand-ice);
    transition: var(--transition-smooth);
}

/* ============================================
   BREADCRUMB - Sharp
============================================ */
.breadcrumb {
    background: var(--light-muted);
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-border);
}

.breadcrumb ol {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
    content: '//';
    color: var(--brand-magenta);
}

.breadcrumb a {
    color: var(--text-dark);
}

.breadcrumb a:hover {
    color: var(--brand-magenta);
}

/* ============================================
   BUTTONS - Sharp Geometric
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    /* Angular cut corners */
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.btn i {
    font-size: 0.9em;
}

.btn-primary {
    background: var(--brand-magenta);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--brand-magenta-light);
    box-shadow: var(--shadow-glow-magenta);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--text-inverse);
    border: 2px solid var(--dark-bg);
}

.btn-dark:hover {
    background: transparent;
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--brand-ice);
    clip-path: none;
}

.btn-outline:hover {
    background: var(--brand-ice);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow-ice);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--brand-magenta);
    clip-path: none;
}

.btn-outline-light:hover {
    background: var(--brand-magenta);
    color: var(--text-inverse);
    box-shadow: var(--shadow-glow-magenta);
}

/* ============================================
   HERO SECTION - Bold & Angular
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    background: var(--gradient-dark), url('/assets/images/IMG_6408.png') center/cover no-repeat;
    width: 100%;
    min-height: 100vh;
    padding: 160px 8vw 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-inverse);
    position: relative;
}

/* Brand accent frame - matching logo style */
.hero-content::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 40px;
    width: 300px;
    height: 200px;
    border: 4px solid var(--brand-ice);
    border-right: none;
    border-bottom: none;
    pointer-events: none;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 200px;
    height: 150px;
    border: 4px solid var(--brand-magenta);
    border-left: none;
    border-top: none;
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 900px;
    color: var(--text-inverse);
    position: relative;
    z-index: 1;
}

.hero-content h1::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-brand-vertical);
}

.hero-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION HEADER - Sharp Typography
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-bg);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(90deg, var(--brand-ice), var(--brand-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-brand-horizontal);
    margin: 0 auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -6px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--brand-magenta);
    background: transparent;
}

.section-divider::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -6px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--brand-ice);
    background: transparent;
}

/* ============================================
   SERVICES GRID - Sharp Cards
============================================ */
.services-grid-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

a.service-card {
    background: var(--light-surface);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--light-muted);
    display: block;
    color: inherit;
    position: relative;
    flex: 0 1 300px;
    /* Sharp cut corner */
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

a.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--brand-magenta);
    transition: var(--transition-smooth);
}

a.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: var(--brand-ice);
    transition: var(--transition-smooth);
}

a.service-card:hover::before {
    height: 100%;
}

a.service-card:hover::after {
    width: 100%;
}

a.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--brand-ice);
    transition: var(--transition-smooth);
    /* Angular shape */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

a.service-card:hover .service-card-icon {
    background: var(--brand-magenta);
    color: var(--text-inverse);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    text-transform: none;
}

/* ============================================
   SERVICE AREAS GRID - Sharp Links
============================================ */
.areas-section {
    padding: var(--section-padding) 0;
    background: var(--light-surface);
}

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

.area-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-surface);
    padding: 18px 16px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-bg);
    transition: var(--transition-smooth);
    flex: 0 1 160px;
    border: 2px solid var(--dark-border);
    border-left: 4px solid var(--brand-magenta);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.area-link:hover {
    background: var(--dark-bg);
    color: var(--text-inverse);
    border-color: var(--brand-magenta);
    border-left-color: var(--brand-ice);
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand-magenta);
}

.area-link i {
    color: var(--brand-magenta);
    margin-right: 10px;
    font-size: 0.9em;
    transition: var(--transition-smooth);
}

.area-link:hover i {
    color: var(--brand-ice);
}

/* About Page Service Area Section */
.about-service-area {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.service-area-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.about-areas-grid {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   SERVICE AREA GRID - Areas Index Page
============================================ */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}

.area-card {
    display: block;
    background: var(--light-surface);
    border: 2px solid var(--dark-border);
    border-left: 4px solid var(--brand-ice);
    padding: 24px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--brand-ice-soft);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    transition: var(--transition-smooth);
}

.area-card:hover {
    background: var(--dark-bg);
    border-color: var(--brand-magenta);
    border-left-color: var(--brand-magenta);
    transform: translateY(-4px);
    box-shadow: var(--shadow-brand-magenta);
}

.area-card:hover::before {
    background: var(--brand-magenta-soft);
}

.area-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.area-card:hover h3 {
    color: var(--brand-ice);
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
    transition: var(--transition-smooth);
}

.area-card:hover p {
    color: var(--text-inverse-muted);
}

/* Arrow indicator on hover */
.area-card::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    color: var(--brand-ice);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.area-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   TRUST / SOCIAL PROOF SECTION - Bold
============================================ */
.trust-section {
    background: var(--dark-bg);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Geometric frame accents */
.trust-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 150px;
    height: 100px;
    border: 3px solid var(--brand-ice);
    border-right: none;
    border-bottom: none;
    opacity: 0.3;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 150px;
    height: 100px;
    border: 3px solid var(--brand-magenta);
    border-left: none;
    border-top: none;
    opacity: 0.3;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.trust-badge {
    text-align: center;
    padding: 20px 30px;
    border: 1px solid var(--dark-border);
    background: var(--dark-surface);
}

.trust-badge-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.trust-star {
    font-size: 2rem;
    color: var(--brand-ice);
}

.trust-badge-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--text-inverse-muted);
    margin-top: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.reviews-heading-block {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.reviews-heading-block h2 {
    color: var(--text-inverse);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.reviews-heading-block .section-divider {
    margin: 0 auto 28px;
}

.reviews-summary-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reviews-stars-dark {
    color: var(--brand-magenta);
    font-size: 1.3rem;
    letter-spacing: 4px;
}

.reviews-meta-dark {
    color: var(--text-muted);
    font-size: 1rem;
}

.reviews-meta-dark strong {
    color: var(--text-inverse);
}

.reviews-count {
    color: #b0b8c4;
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--dark-surface);
    padding: 40px 36px;
    border: 1px solid var(--dark-border);
    border-top: 3px solid var(--brand-ice);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--brand-magenta);
    box-shadow: var(--shadow-brand-magenta);
}

.testimonial-stars {
    color: var(--brand-magenta);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-inverse);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: normal;
    border-left: 3px solid var(--brand-ice);
    padding-left: 16px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--text-inverse);
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--text-inverse);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--brand-ice);
    margin-top: 2px;
}

/* ============================================
   ABOUT SECTION - Bold Split
============================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image {
    background: url('/assets/images/IMG_6403.png') center/cover no-repeat;
    min-height: 650px;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.4) 0%, transparent 60%);
}

/* Sharp frame accent */
.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 3px solid var(--brand-ice);
    pointer-events: none;
    opacity: 0.5;
}

.about-content {
    background: var(--light-bg);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-brand-vertical);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.85;
    text-transform: none;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-ice);
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Our Team page — two-column Story + Why Choose layout */
.about-two-col-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-col-story h2,
.about-col-why h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dark-bg);
    text-align: center;
}

.about-col-story p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .about-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 540px) {
    .about-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PHOTO SECTION - Sharp Cards
============================================ */
.services-photo-section {
    padding: var(--section-padding) 0;
    background: var(--light-surface);
}

.services-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-photo-card {
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    background: var(--light-surface);
    border: 1px solid var(--light-muted);
}

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

.service-photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

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

.service-photo-content {
    padding: 32px;
    background: var(--light-surface);
    border-top: 3px solid var(--brand-ice);
}

.service-photo-card:hover .service-photo-content {
    border-top-color: var(--brand-magenta);
}

.service-photo-content h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.service-photo-content p {
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 20px;
    text-transform: none;
}

.service-photo-content .btn {
    background: var(--dark-bg);
    color: var(--text-inverse);
    padding: 14px 28px;
    font-size: 0.85rem;
}

.service-photo-content .btn:hover {
    background: var(--brand-magenta);
}

/* ============================================
   BLOG SECTION - Sharp Cards
============================================ */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

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

.blog-card {
    background: var(--light-surface);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--light-muted);
}

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

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

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

.blog-card-content {
    padding: 28px;
}

.blog-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card h3 a {
    color: inherit;
}

.blog-card h3 a:hover {
    color: var(--brand-magenta);
}

.blog-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-transform: none;
}

.read-more {
    color: var(--brand-magenta);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.read-more:hover {
    color: var(--brand-ice);
}

.read-more i {
    transition: var(--transition-smooth);
}

.read-more:hover i {
    transform: translateX(6px);
}

/* ============================================
   CTA SECTION - Bold Impact
============================================ */
.cta-section {
    background: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--text-inverse);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-inverse-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-trust-badges span {
    color: var(--text-inverse-muted);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust-badges i {
    color: var(--brand-ice);
}

/* ============================================
   FOOTER - Sharp & Modern
============================================ */
.footer {
    background: var(--dark-surface);
    color: var(--text-inverse);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-inverse-muted);
    margin-top: 16px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-nap {
    margin-top: 16px;
    font-style: normal;
    color: var(--text-inverse-muted);
    font-size: 0.9rem;
    line-height: 2;
}

.footer-nap a {
    color: var(--brand-ice);
    font-weight: 600;
}

.footer-nap strong {
    color: var(--text-inverse);
}

.footer-badge {
    margin-top: 20px;
}

.footer-badge img {
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

.footer h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-magenta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.footer-links a {
    color: var(--text-inverse-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-ice);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-inverse-muted);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--brand-ice);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact-item a {
    color: inherit;
}

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

.footer-emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    padding: 3px 8px;
    background: rgba(228, 87, 240, 0.15);
    border: 1px solid var(--brand-magenta);
    color: var(--brand-magenta);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--brand-magenta);
    border-color: var(--brand-magenta);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-inverse-muted);
    font-size: 0.85rem;
}

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

.footer-legal-links a {
    color: var(--text-inverse-muted);
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: var(--brand-magenta);
}

/* ============================================
   PAGE HERO (inner pages) - Sharp
============================================ */
.page-hero {
    background: var(--gradient-dark), url('/assets/images/IMG_6408.png') center/cover no-repeat;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--text-inverse);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-horizontal);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--text-inverse);
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-transform: none;
}

/* ============================================
   SERVICE / CITY PAGE CONTENT
============================================ */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin: 50px 0 16px;
}

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

.page-content p {
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 16px;
    text-transform: none;
}

.page-content ul {
    list-style: none;
    margin: 16px 0 28px;
}

.page-content ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--gradient-brand);
}

.page-content ul li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 12px;
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 0.7rem;
}

/* FAQ Section - Sharp */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    border-bottom: 1px solid var(--light-muted);
    border-left: 3px solid var(--brand-ice);
    padding: 24px;
    margin-bottom: 12px;
    background: var(--light-surface);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-left-color: var(--brand-magenta);
}

.faq-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.75;
    text-transform: none;
}

/* Internal Links Section - Sharp */
.related-links {
    background: var(--light-muted);
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--brand-magenta);
}

.related-links h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.related-link-item a {
    display: block;
    background: var(--light-surface);
    padding: 12px 16px;
    color: var(--dark-bg);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
    border-left: 3px solid var(--brand-ice);
}

.related-link-item a:hover {
    background: var(--dark-bg);
    color: var(--brand-ice);
    border-left-color: var(--brand-magenta);
}

/* ============================================
   CONTACT FORM SECTION - Sharp
============================================ */
.contact-section {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-surface);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-top: 4px solid var(--brand-magenta);
}

.contact-form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-ice);
}

.contact-form-container h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.contact-form-container .subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 36px;
    text-transform: none;
}

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

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--light-muted);
    background: var(--light-bg);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-ice);
    background: var(--light-surface);
    outline: none;
    box-shadow: 0 0 0 3px rgba(152, 242, 255, 0.2);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    margin-top: 12px;
}

/* ============================================
   VIDEO SECTION - Sharp
============================================ */
.video-section {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
}

.video-section-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.video-section-text {
    color: var(--text-inverse);
}

.video-section-text h2 {
    color: var(--text-inverse);
    margin-bottom: 16px;
}

.video-section-text p {
    color: var(--text-inverse-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    text-transform: none;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brand-ice);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.video-thumbnail:hover img {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--brand-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.video-thumbnail:hover .video-play-btn {
    background: var(--brand-magenta-light);
    box-shadow: var(--shadow-glow-magenta);
}

/* ============================================
   TEAM SECTION - Sharp
============================================ */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--light-surface);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    flex: 0 1 220px;
    height: 380px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background: linear-gradient(135deg, var(--brand-ice) 0%, var(--brand-magenta) 100%);
    color: #fff;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--brand-magenta) 0%, var(--brand-ice) 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.flip-card-front img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.flip-card-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
}

.flip-card-front h3 {
    font-size: 1.15rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flip-card-front .flip-title {
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}

.flip-card-back h3 {
    font-size: 1.15rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.flip-card-back .flip-title {
    font-size: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

/* Legacy static team card (kept for compatibility) */
.team-card {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid var(--brand-ice);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.team-image:hover {
    border-color: var(--brand-magenta);
    box-shadow: var(--shadow-brand-magenta);
}

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

.team-card h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--brand-magenta);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.team-card p {
    color: var(--text-medium);
    line-height: 1.7;
    text-transform: none;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .about-content {
        padding: 60px 50px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 400px;
    }

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

    .video-section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-badges-row {
        gap: 40px;
    }

    .hero-content::before,
    .hero-content::after {
        display: none;
    }
}

/* ============================================
   QUOTE PAGE LAYOUT & FORM
   ============================================ */

.quote-section {
    padding: var(--section-padding) 0;
    background: var(--light-bg);
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.quote-form-container {
    background: #fff;
    border-top: 4px solid var(--brand-ice);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 44px;
}

.quote-form-container h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.quote-form-container > p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Fieldset sections */
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 36px;
}

.form-fieldset legend {
    display: block;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-ice);
    margin-bottom: 24px;
}

/* Extra breathing room between form groups inside quote form */
.quote-form .form-group {
    margin-bottom: 24px;
}

.quote-form .form-row {
    margin-bottom: 0;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 6px;
    font-style: italic;
}

.form-disclaimer {
    margin-top: 14px;
    font-size: 0.88rem;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .quote-form-container {
        padding: 32px 24px;
    }
}

/* ============================================
   QUOTE PAGE SIDEBAR
   ============================================ */

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-sidebar-card {
    background: var(--light-bg);
    border: 1px solid #e0e4ea;
    border-top: 3px solid var(--brand-ice);
    padding: 28px 24px;
    border-radius: 4px;
}

.quote-sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 14px;
}

.quote-sidebar-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.quote-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-ice), var(--brand-magenta));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.quote-steps li div strong {
    display: block;
    color: var(--dark-bg);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.quote-steps li div p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.sidebar-area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-area-list li {
    font-size: 0.92rem;
    color: var(--text-medium);
    padding-left: 16px;
    position: relative;
}

.sidebar-area-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-ice);
    font-size: 0.8rem;
}

/* ============================================
   END QUOTE PAGE SIDEBAR
   ============================================ */

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-ice);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.reviews-google-link:hover {
    border-color: var(--brand-ice);
}

.daikin-link {
    color: var(--brand-ice);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.daikin-link:hover {
    border-color: var(--brand-ice);
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    background: var(--dark-bg);
    padding-top: 48px;
}

.map-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.map-embed {
    width: 100%;
    line-height: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-surface);
        flex-direction: column;
        padding: 12px 0 20px;
        gap: 0;
        border-top: 2px solid var(--brand-ice);
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Tighter, cleaner nav links in mobile menu */
    .nav-menu .nav-link {
        padding: 12px 24px;
        font-size: 1rem;
        color: var(--text-inverse);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
    }

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

    .nav-menu .nav-link:hover {
        color: var(--brand-ice);
        background: rgba(255,255,255,0.04);
    }

    /* CTA button in mobile menu */
    .nav-menu .nav-cta-btn {
        margin: 16px 24px 0;
        padding: 12px 24px;
        text-align: center;
        width: calc(100% - 48px);
        align-self: flex-start;
        font-size: 0.95rem;
    }

    .dropdown-menu {
        position: static;
        display: none;
        border-top: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        padding: 4px 0 4px 0;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 10px 40px;
        font-size: 0.9rem;
        color: var(--text-inverse-muted);
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        color: var(--brand-ice);
        background: rgba(255,255,255,0.04);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .hero-content {
        padding: 130px 24px 70px;
    }

    .hero-content h1::before {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

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

    .about-content {
        padding: 50px 28px;
    }

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

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

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

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

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

    .trust-badges-row {
        gap: 24px;
    }

    .trust-badge-number {
        font-size: 2.5rem;
    }

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

    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .area-card {
        padding: 20px 24px;
    }

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

    .trust-section::before,
    .trust-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    }

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

    .cta-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .page-hero {
        padding: 140px 0 70px;
    }
}

/* ============================================
   MOBILE FIXES — comprehensive pass
   ============================================ */

/* --- 768px: existing block additions --- */
@media (max-width: 768px) {

    /* Flip card team grid — allow full-width cards */
    .flip-card {
        flex: 0 1 calc(50% - 12px);
        height: 320px;
    }

    /* Quote page sidebar stacks */
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Quote form container padding */
    .quote-form-container {
        padding: 32px 24px;
    }

    /* Reviews heading block spacing */
    .reviews-heading-block {
        margin-bottom: 36px;
    }

    /* Footer gap tighter */
    .footer-grid {
        gap: 24px;
    }

    /* Map reduced height on mobile */
    .map-embed iframe {
        height: 300px;
    }
}

/* --- 540px: small tablets / large phones --- */
@media (max-width: 540px) {

    /* Trust badges wrap to 2x2 grid */
    .trust-badges-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Service cards go full width */
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* About why grid stacks */
    .about-why-grid {
        grid-template-columns: 1fr;
    }

    /* Form rows stack earlier */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Testimonial cards full width */
    .testimonial-card {
        padding: 28px 20px;
    }

    /* Services photo grid 1 col sooner */
    .services-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 480px: phones --- */
@media (max-width: 480px) {

    /* Flip cards go single column on small phones */
    .flip-card {
        flex: 0 1 100%;
        max-width: 280px;
        height: 300px;
    }

    .team-grid {
        gap: 16px;
    }

    /* Areas grid single column on very small screens */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Area link full width */
    .area-link {
        flex: 1 1 100%;
        text-align: center;
    }

    /* Trust badges stack to 1 col on tiny phones */
    .trust-badges-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Quote form container tight */
    .quote-form-container {
        padding: 24px 16px;
    }

    /* Quote sidebar cards */
    .quote-sidebar-card {
        padding: 20px 16px;
    }

    /* Contact form tighter */
    .contact-form-container {
        padding: 24px 16px;
    }

    /* Footer legal links stack */
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    /* Hero CTA group full-width buttons */
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Map reduced height on small phones */
    .map-embed iframe {
        height: 240px;
    }

    /* Section headings smaller on mobile */
    .section-header h2 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}

/* Global overflow guard — prevents any element causing horizontal scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

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

iframe {
    max-width: 100%;
}
