/* ==================== DESIGN TOKENS ==================== */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-card-hover: rgba(255, 255, 255, 0.06);

    --color-accent: #d4a373;
    --color-accent-light: #e6c9a8;
    --color-accent-dark: #b8894f;
    --color-warning: #f59e0b;

    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;

    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(212, 163, 115, 0.2);

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

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warning {
    background: linear-gradient(135deg, var(--color-warning) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 163, 115, 0.4);
}

.btn-ghost {
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
}

.btn-ghost:hover {
    border-color: var(--color-accent);
    background: rgba(212, 163, 115, 0.1);
}

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

.btn-outline:hover {
    background: var(--color-accent);
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.section-tag-warning {
    color: var(--color-warning);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: bottom var(--transition-normal);
}

.sticky-cta.visible {
    bottom: 24px;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 163, 115, 0.15) 0%, transparent 60%);
    animation: gradientPulse 8s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: patternMove 20s linear infinite;
}

/* Floating Orbs */
.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -20%;
    right: -10%;
    animation: floatOrb1 15s ease-in-out infinite;
    filter: blur(40px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: -5%;
    animation: floatOrb2 18s ease-in-out infinite;
    filter: blur(30px);
}

/* Animated Gradient Border Line */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 163, 115, 0.5),
            rgba(212, 163, 115, 0.8),
            rgba(212, 163, 115, 0.5),
            transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Glowing Particles */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212, 163, 115, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(212, 163, 115, 0.3), transparent),
        radial-gradient(2px 2px at 60% 40%, rgba(212, 163, 115, 0.35), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(212, 163, 115, 0.25), transparent),
        radial-gradient(2px 2px at 15% 85%, rgba(212, 163, 115, 0.3), transparent),
        radial-gradient(2px 2px at 90% 20%, rgba(212, 163, 115, 0.4), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(212, 163, 115, 0.2), transparent),
        radial-gradient(2px 2px at 30% 10%, rgba(212, 163, 115, 0.35), transparent),
        radial-gradient(2px 2px at 70% 90%, rgba(212, 163, 115, 0.3), transparent),
        radial-gradient(2px 2px at 10% 50%, rgba(212, 163, 115, 0.25), transparent);
    animation: sparkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.decor-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    animation: rotateScale 20s linear infinite;
}

.decor-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -80px;
    border-style: dashed;
    animation: rotateScale 25s linear infinite reverse;
}

.decor-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    border-width: 2px;
    border-color: rgba(212, 163, 115, 0.1);
    animation: pulseCircle 4s ease-in-out infinite;
}

.decor-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(212, 163, 115, 0.2), transparent);
    width: 1px;
}

.decor-line-1 {
    height: 200px;
    top: 15%;
    left: 20%;
    animation: lineFloat 6s ease-in-out infinite;
}

.decor-line-2 {
    height: 150px;
    bottom: 25%;
    right: 25%;
    animation: lineFloat 8s ease-in-out infinite reverse;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    filter: grayscale(50%);
    animation: floatIcon 10s ease-in-out infinite;
}

.float-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.float-icon-2 {
    top: 25%;
    right: 12%;
    font-size: 2.5rem;
    animation-delay: -2s;
    animation-duration: 14s;
}

.float-icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: -4s;
    animation-duration: 11s;
}

.float-icon-4 {
    top: 40%;
    left: 5%;
    font-size: 1.5rem;
    animation-delay: -1s;
    animation-duration: 9s;
}

.float-icon-5 {
    bottom: 20%;
    right: 8%;
    font-size: 1.8rem;
    animation-delay: -3s;
    animation-duration: 13s;
}

.float-icon-6 {
    top: 60%;
    right: 20%;
    font-size: 1.6rem;
    animation-delay: -5s;
    animation-duration: 10s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
}

/* ==================== AUTHORITY ==================== */
.authority {
    background: var(--color-bg-secondary);
}

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

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
}

.image-placeholder {
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.placeholder-icon {
    font-size: 4rem;
}

.placeholder-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.credential-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.credential-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 2rem;
}

.credential-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.credential-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.authority-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text-secondary);
    border-left: 4px solid var(--color-accent);
    padding-left: 24px;
}

.authority-quote .highlight {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 600;
}

/* ==================== PAS ==================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.problem-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(245, 158, 11, 0.3);
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problem-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.solution-banner {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.1) 0%, rgba(212, 163, 115, 0.05) 100%);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-xl);
}

.solution-banner h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.solution-banner p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* ==================== SERVICES ==================== */
.services {
    background: var(--color-bg-secondary);
}

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

.service-card {
    position: relative;
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card .btn-block {
    margin-top: auto;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.service-card-featured {
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.08) 0%, rgba(212, 163, 115, 0.02) 100%);
    border-color: rgba(212, 163, 115, 0.3);
}

.service-card-featured:hover {
    border-color: var(--color-accent);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 6px 14px;
    background: var(--color-accent);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--color-accent);
    font-weight: 700;
}

.service-location {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.location-icon {
    font-size: 1.5rem;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-info span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ==================== SOCIAL PROOF ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.testimonial-result {
    text-align: right;
}

.result-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.testimonial-card>p {
    color: var(--color-text-secondary);
    font-style: italic;
}

/* ==================== PROCESS ==================== */
.process {
    background: var(--color-bg-secondary);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.process-step:hover {
    border-color: var(--color-accent);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.step-icon {
    font-size: 2rem;
}

/* ==================== FAQ ==================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
    padding: 120px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-header {
    margin-bottom: 48px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.contact-form {
    text-align: left;
    padding: 40px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.cta-alternative p {
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--color-text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-location p {
    color: var(--color-text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

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

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .authority-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

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

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

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

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

    .process-step:hover {
        transform: none;
    }

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

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

    .footer-links {
        align-items: center;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(-30px, 40px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-60px, 20px) scale(0.95);
        opacity: 0.5;
    }

    75% {
        transform: translate(-20px, -30px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translate(40px, -30px) scale(1.15);
        opacity: 0.7;
    }

    66% {
        transform: translate(20px, 40px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.3;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 163, 115, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 163, 115, 0.4);
    }
}

@keyframes rotateScale {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulseCircle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

@keyframes lineFloat {

    0%,
    100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scaleY(1.2);
        opacity: 0.6;
    }
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.12;
    }

    20% {
        transform: translateY(-20px) translateX(5px) rotate(5deg);
        opacity: 0.2;
    }

    40% {
        transform: translateY(-10px) translateX(-8px) rotate(-3deg);
        opacity: 0.15;
    }

    60% {
        transform: translateY(-25px) translateX(3px) rotate(8deg);
        opacity: 0.22;
    }

    80% {
        transform: translateY(-8px) translateX(-5px) rotate(-5deg);
        opacity: 0.14;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.12;
    }
}