/* ============================================
   REDYWITHANNA - STYLE SHEET
   Theme: Deep Teal + Warm Amber + Navy + White
   Font: Outfit (Variable)
   Pattern: Modern gradients, glass cards, bold sections
   ============================================ */

/* --- Font Face --- */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* --- CSS Variables --- */
:root {
    --teal: #0D9488;
    --teal-dark: #0F766E;
    --teal-deeper: #115E59;
    --teal-light: #2DD4BF;
    --teal-pale: #CCFBF1;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --amber-light: #FCD34D;
    --amber-pale: #FEF3C7;
    --navy: #0F172A;
    --white: #FFFFFF;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --gradient-teal: linear-gradient(135deg, #0D9488 0%, #115E59 100%);
    --gradient-teal-light: linear-gradient(135deg, #2DD4BF 0%, #0D9488 100%);
    --gradient-amber: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-hero: linear-gradient(160deg, #F0FDFA 0%, #CCFBF1 40%, #99F6E4 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --shadow-xs: 0 1px 2px rgba(13, 148, 136, 0.05);
    --shadow-sm: 0 2px 8px rgba(13, 148, 136, 0.08);
    --shadow-md: 0 4px 20px rgba(13, 148, 136, 0.1);
    --shadow-lg: 0 8px 32px rgba(13, 148, 136, 0.12);
    --shadow-xl: 0 16px 48px rgba(13, 148, 136, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --font: 'Outfit', system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1180px;
}

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

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

body {
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.75;
    color: var(--slate-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--slate-900);
}

h1 { font-size: 3.2rem; letter-spacing: -0.03em; }
h2 { font-size: 2.4rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.text-teal { color: var(--teal); }
.text-amber { color: var(--amber); }
.text-gradient {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-amber {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-amber {
    background: var(--gradient-amber);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

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

.btn-outline:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* --- Section Labels --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 3px;
    background: var(--gradient-teal);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 640px;
    line-height: 1.7;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--slate-50);
}

.section-teal-light {
    background: #F0FDFA;
}

.section-center {
    text-align: center;
}

.section-center .section-subtitle {
    margin: 0 auto;
}

.mb-lg { margin-bottom: 48px; }
.mt-lg { margin-top: 48px; }

/* --- Wave Divider --- */
.wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.wave-divider-flip {
    transform: rotate(180deg);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    z-index: 1001;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 800;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--slate-600);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

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

.nav-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--slate-900);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--teal-pale);
}

.hero-trust-item {
    text-align: center;
}

.hero-trust-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
}

.hero-trust-item span {
    font-size: 0.82rem;
    color: var(--slate-400);
}

/* ============================================
   SERVICES SECTION - Tab-based switcher
   ============================================ */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.services-tab {
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--slate-500);
    cursor: pointer;
    transition: var(--transition);
}

.services-tab:hover {
    border-color: var(--teal-pale);
    color: var(--teal);
}

.services-tab.active {
    background: var(--gradient-teal);
    color: var(--white);
    border-color: var(--teal);
}

.services-panel {
    display: none;
}

.services-panel.active {
    display: block;
    animation: fadeInPanel 0.4s ease;
}

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

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

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--slate-500);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--teal);
    margin-top: 2px;
}

.service-feature span {
    font-size: 0.95rem;
    color: var(--slate-600);
}

.service-feature strong {
    color: var(--slate-800);
}

/* ============================================
   SERVICE BLOCKS (Services Page)
   ============================================ */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-block-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-block-content h2 {
    margin-bottom: 16px;
}

.service-block-content p {
    color: var(--slate-500);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0;
}

.service-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.service-list-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--teal);
    margin-top: 2px;
    font-weight: 700;
}

.service-list-item p {
    margin-bottom: 0;
    color: var(--slate-600);
    font-size: 0.95rem;
}

.service-list-item strong {
    color: var(--slate-800);
}

/* ============================================
   PROCESS SECTION - Vertical Timeline
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--teal-pale), var(--teal), var(--teal-pale));
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding-bottom: 48px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
    z-index: 2;
}

.process-step-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

.process-step-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal-pale);
}

.process-step-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.process-step-content h4 {
    margin-bottom: 8px;
    color: var(--slate-900);
}

.process-step-content p {
    color: var(--slate-500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   WHY CHOOSE US - Bento Grid
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

.bento-card:hover {
    border-color: var(--teal-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.bento-card-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.bento-card h4 {
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--teal-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--slate-800);
}

.testimonial-info span {
    font-size: 0.82rem;
    color: var(--slate-400);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--slate-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-800);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--teal);
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teal);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    background: var(--gradient-teal);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-teal);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

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

.cta-contact-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-contact-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact-item:hover {
    color: var(--white);
}

/* ============================================
   LEAD FORM (Homepage)
   ============================================ */
.lead-form-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lead-form-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.lead-form-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.lead-form-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-form-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.lead-form-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--teal-light);
}

.lead-form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lead-form-card h3 {
    margin-bottom: 8px;
}

.lead-form-card > p {
    color: var(--slate-500);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--slate-900);
    padding: 64px 0 0;
    color: var(--slate-400);
}

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

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--slate-400);
}

.footer-contact-item:hover {
    color: var(--teal-light);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-400);
    padding: 6px 0;
}

.footer-column a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

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

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

.footer-bottom-links a {
    color: var(--slate-400);
}

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

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb {
    font-size: 0.88rem;
    color: var(--slate-400);
    margin-bottom: 16px;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header h1 {
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 640px;
    position: relative;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

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

.value-card-icon {
    width: 48px;
    height: 48px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Team Section */
.team-section-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--teal-pale);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--slate-50);
    padding: 36px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.contact-info-card h3 {
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.contact-info-item a {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-next-steps {
    padding: 28px;
    background: var(--teal-pale);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal);
}

.contact-next-steps h4 {
    margin-bottom: 8px;
    color: var(--teal-deeper);
}

.contact-next-steps p {
    color: var(--teal-deeper);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.contact-form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

.contact-form-card h3 {
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--slate-500);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

/* ============================================
   FORMS
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--slate-800);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
}

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

.form-error-msg {
    font-size: 0.82rem;
    color: #EF4444;
    margin-top: 4px;
}

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

.form-consent {
    font-size: 0.82rem;
    color: var(--slate-400);
    margin-top: 16px;
    margin-bottom: 0;
}

.form-consent a {
    color: var(--teal);
}

.form-consent a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--teal);
    margin: 0 auto 20px;
}

.form-success h3 {
    margin-bottom: 12px;
}

.form-success p {
    color: var(--slate-500);
    font-size: 0.95rem;
}

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

.pricing-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--teal-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pricing-card-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.pricing-card h4 {
    margin-bottom: 12px;
}

.pricing-card p {
    color: var(--slate-500);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ============================================
   LEGAL CONTENT (Privacy, Terms, Disclaimer)
   ============================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.88rem;
    color: var(--slate-400);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate-200);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-100);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-content p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 12px 0 20px 20px;
    list-style: disc;
}

.legal-content li {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-content a {
    color: var(--teal);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Legal content should always be visible */
.legal-content.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }

    .service-detail,
    .service-block,
    .about-story,
    .lead-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block.reverse {
        direction: ltr;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }

    .section { padding: 64px 0; }

    .hero { padding: 130px 0 60px; }

    .hero-trust {
        flex-direction: column;
        gap: 20px;
    }

    .nav { display: none; }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--slate-700);
    }

    .mobile-menu a:hover {
        color: var(--teal);
    }

    .services-tabs {
        flex-direction: column;
        align-items: center;
    }

    .bento-grid,
    .values-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

    .process-timeline {
        padding-left: 50px;
    }

    .process-step-number {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

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

    .container { padding: 0 16px; }

    .hero { padding: 120px 0 48px; }

    .btn { padding: 12px 24px; font-size: 0.9rem; }

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

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