/* ============================================
   AFFORDABLE DATA RECOVERY - GLOBAL STYLES
   Design: Concept 2 - Trust & Professional
   Fully Responsive for All Devices
   ============================================ */

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

:root {
    --primary: #1B365D;
    --primary-light: #2A4A7F;
    --secondary: #C9A227;
    --accent: #E8F4F8;
    --dark: #0D1B2A;
    --gray-900: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-500: #6E6E6E;
    --gray-300: #D1D1D1;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --success: #2E7D32;
    --trust-blue: #E8F1F8;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

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

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.announcement-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    white-space: nowrap;
}

.announcement-bar span svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

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

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
}

.top-bar-item svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    flex-shrink: 0;
}

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

.top-bar-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--secondary);
}

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 10px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-left: 3px solid var(--secondary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--trust-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.contact-value:hover {
    color: var(--secondary);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #D4AD2B;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* Navigation */
.nav-bar {
    background: var(--primary);
    padding: 0;
}

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

.nav {
    display: flex;
    flex-wrap: wrap;
}

.nav-item {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 16px 20px;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    white-space: nowrap;
}

.nav-item:hover {
    background: var(--primary-light);
    color: var(--white);
}

.nav-item.active {
    background: var(--secondary);
    color: var(--dark);
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

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

.dropdown-toggle svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
    border-left-color: var(--secondary);
    padding-left: 22px;
}

.nav-cta {
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #D4AD2B;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.trust-badge-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Form */
.hero-form-container {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-500);
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-select {
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236E6E6E' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
    cursor: pointer;
    padding-right: 36px;
}

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

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #D4AD2B;
    transform: translateY(-2px);
}

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

.form-note svg {
    width: 16px;
    height: 16px;
    fill: var(--success);
    flex-shrink: 0;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-300);
}

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

.stat-card {
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid var(--gray-300);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.section-label::before {
    right: calc(100% + 12px);
}

.section-label::after {
    left: calc(100% + 12px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid var(--gray-300);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.12);
    transform: translateY(-8px);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--trust-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: fill 0.4s;
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ==================== PROCESS SECTION ==================== */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.process-image {
    width: 100%;
    height: 450px;
    background: var(--primary);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.process-image::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 8px;
    border-left: 4px solid var(--gray-300);
    transition: all 0.4s;
}

.process-step:hover {
    border-left-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==================== WHY CHOOSE US ==================== */
.why-us {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.why-us .section-label {
    color: var(--secondary);
}

.why-us .section-label::before,
.why-us .section-label::after {
    background: var(--secondary);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-description {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    transform: translateY(-6px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    border: 1px solid var(--gray-300);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    opacity: 0.1;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-300);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.author-info p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ==================== CERTIFICATIONS ==================== */
.certifications {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

.cert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cert-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cert-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-logo {
    width: 90px;
    height: 54px;
    background: var(--gray-100);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.cert-logo:hover {
    opacity: 1;
}

.cert-logo span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== SERVING AREAS ==================== */
.serving-areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-item {
    padding: 14px 16px;
    background: var(--gray-100);
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.area-item:hover {
    background: var(--trust-blue);
    border-color: var(--primary);
    color: var(--primary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 0;
    background: var(--secondary);
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 16px;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.phone-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary);
}

.phone-text {
    min-width: 0;
}

.phone-text h4 {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.phone-text p,
.phone-text a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin: 0;
}

.phone-text a:hover {
    color: var(--secondary);
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section.alt {
    background: var(--gray-100);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 350px;
    background: var(--primary);
    border-radius: 8px;
    position: relative;
}

.content-image::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    z-index: 1;
    pointer-events: none;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 24px 0 12px;
}

.content-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
}

.content-text ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--gray-700);
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border-radius: 50%;
}

.content-text ul li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

/* ==================== PRICING ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--gray-300);
    transition: all 0.4s;
}

.pricing-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
    transform: scale(1.02);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.12);
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.pricing-level {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pricing-price sup {
    font-size: 50%;
    vertical-align: super;
}

.pricing-period {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    fill: var(--success);
    flex-shrink: 0;
}

/* ==================== FAQ ==================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-300);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    gap: 16px;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    text-decoration: none;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 40px;
}

.mt-4 {
    margin-top: 40px;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Extra Large (1200px and up) */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-form-container {
        max-width: 450px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-phone {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Large (992px and up) */
@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

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

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
        padding-top: 70px;
    }

    .nav-bar.mobile-active {
        left: 0;
    }

    .nav-bar-content {
        flex-direction: column;
        align-items: stretch;
    }

    .nav {
        flex-direction: column;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 14px 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        display: none;
        min-width: auto;
    }

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

    .dropdown-menu a {
        color: rgba(255,255,255,0.8);
        padding: 12px 24px 12px 36px;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--white);
    }

    .nav-cta {
        margin: 20px;
        justify-content: center;
    }

    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

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

    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
    }

    .stat-card:nth-child(2n) {
        border-left: 1px solid var(--gray-300);
    }

    .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .services {
        padding: 60px 0;
    }

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

    .process {
        padding: 60px 0;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-image {
        height: 280px;
        order: 2;
    }

    .process-steps {
        order: 1;
    }

    .why-us {
        padding: 60px 0;
    }

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

    .testimonials {
        padding: 60px 0;
    }

    .serving-areas {
        padding: 60px 0;
    }

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

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

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

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

    .content-image {
        height: 280px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

/* Medium (768px and up) */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 12px;
        padding: 8px 12px;
    }

    .announcement-bar span {
        padding: 3px 8px;
        font-size: 11px;
    }

    .top-bar {
        display: none;
    }

    .header-main {
        padding: 12px 0;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-form-container {
        padding: 24px 20px;
    }

    .form-header h3 {
        font-size: 20px;
    }

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

    .stat-card {
        padding: 20px 10px;
    }

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

    .service-card {
        padding: 28px 20px;
    }

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

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

    .testimonial-card {
        padding: 24px;
    }

    .cert-content {
        flex-direction: column;
        text-align: center;
    }

    .cert-logos {
        gap: 20px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-links a {
        justify-content: center;
    }

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

    .footer-legal {
        justify-content: center;
        gap: 16px;
    }
}

/* Small (576px and up) */
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    .announcement-bar .container {
        flex-direction: column;
        gap: 4px;
    }

    .announcement-bar span {
        font-size: 10px;
    }

    .logo-text {
        display: none;
    }

    .mobile-menu-toggle span {
        width: 24px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust-badges {
        gap: 16px;
        padding-top: 24px;
    }

    .trust-badge {
        min-width: 60px;
    }

    .trust-badge-icon {
        width: 44px;
        height: 44px;
    }

    .trust-badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-badge-text {
        font-size: 9px;
    }

    .hero-form-container {
        padding: 20px 16px;
    }

    .form-header h3 {
        font-size: 18px;
    }

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

    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-submit {
        padding: 12px;
        font-size: 13px;
    }

    .stats-bar {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .cta-phone {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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

    .area-item {
        padding: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Extra Small (below 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .announcement-bar {
        padding: 6px 10px;
    }

    .header-main {
        padding: 10px 0;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        padding: 32px 0;
    }

    .hero-form-container {
        padding: 16px 14px;
    }

    .stat-card {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .announcement-bar,
    .top-bar,
    .mobile-menu-toggle,
    .nav-bar,
    .hero-form-container,
    .cta-section {
        display: none !important;
    }

    .header {
        position: static;
        box-shadow: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .hero h1,
    .hero-description {
        color: #000;
    }
}
