/* ============================================
   Dylan Connor Associates — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7e22ce;
    --plum-800: #6b21a8;
    --plum-900: #581c87;
    --plum-950: #3b0764;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-50: #fffbeb;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --- Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
}

::selection {
    background: var(--plum-200);
    color: var(--plum-950);
}

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

/* --- Geometric Background Shapes --- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.07) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: rgba(168, 85, 247, 0.04);
    border: 2px solid rgba(168, 85, 247, 0.08);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
    animation: float-medium 12s ease-in-out infinite;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(251, 191, 36, 0.05);
    top: 60%;
    left: 3%;
    animation: float-medium 18s ease-in-out infinite reverse;
}

.geo-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(168, 85, 247, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    top: 75%;
    right: 10%;
    opacity: 0.6;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(2deg); }
    66% { transform: translate(-15px, 20px) rotate(-1deg); }
}

@keyframes float-medium {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(15px, -20px); }
}

/* --- Navigation --- */
.nav-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(88, 28, 135, 0.08);
    transition: box-shadow var(--transition-base);
}

.nav-header.scrolled {
    box-shadow: 0 4px 30px rgba(88, 28, 135, 0.1);
}

/* Logo */
.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, transparent 60%);
    border-radius: 12px;
}

.logo-mark span {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--amber-400);
    position: relative;
    z-index: 1;
}

.logo-mark:hover {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.3);
}

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

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--plum-950);
    letter-spacing: -0.01em;
}

.logo-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--plum-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Nav Links */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--plum-900);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    background: var(--plum-50);
    color: var(--plum-700);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 100%);
    color: white;
    margin-left: 8px;
    box-shadow: 0 2px 10px rgba(88, 28, 135, 0.25);
}

.nav-link--cta:hover {
    background: linear-gradient(135deg, var(--plum-600) 0%, var(--plum-800) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.35);
}

.nav-link-arrow {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-link--cta:hover .nav-link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Mobile Menu */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--plum-50);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: white;
    border-bottom: 1px solid rgba(88, 28, 135, 0.08);
    transition: max-height var(--transition-base);
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--plum-900);
    text-decoration: none;
    border-bottom: 1px solid rgba(88, 28, 135, 0.06);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--plum-600);
    padding-left: 8px;
}

.mobile-nav-link--cta {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 100%);
    color: white;
    text-align: center;
    border-radius: 10px;
    border-bottom: none;
    padding: 14px;
}

/* --- Section Shared --- */
.section-relative {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-400), var(--plum-400));
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--plum-950);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    max-width: 560px;
}

.section-header {
    max-width: 680px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.3);
}

.btn--primary:hover {
    box-shadow: 0 8px 25px rgba(88, 28, 135, 0.4);
}

.btn--ghost {
    background: white;
    color: var(--plum-900);
    border: 2px solid var(--plum-200);
}

.btn--ghost:hover {
    border-color: var(--plum-400);
    background: var(--plum-50);
}

.btn--amber {
    background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-500) 100%);
    color: var(--plum-950);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn--amber:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

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

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(160deg, var(--plum-50) 0%, white 40%, var(--amber-50) 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--plum-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--plum-700);
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(88, 28, 135, 0.06);
}

.hero-badge svg {
    color: var(--amber-500);
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--plum-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    position: relative;
    color: var(--plum-700);
    display: inline;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
    border-radius: 2px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
    color: #475569;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(88, 28, 135, 0.08);
    border: 1px solid var(--plum-100);
}

.hero-stat {
    flex: 1;
    text-align: center;
}

.hero-stat:not(:last-child) {
    padding-right: 24px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    background: var(--plum-200);
    align-self: stretch;
    margin: 8px 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-grid {
    position: relative;
    height: 560px;
}

.hero-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(88, 28, 135, 0.15);
}

.hero-img--main {
    width: 340px;
    height: 420px;
    top: 0;
    right: 0;
}

.hero-img--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(59, 7, 100, 0.3) 100%);
    border-radius: 20px;
}

.hero-img--accent {
    width: 200px;
    height: 200px;
    bottom: 140px;
    left: 0;
    border: 4px solid white;
}

.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--secondary {
    width: 260px;
    height: 180px;
    bottom: 0;
    right: 40px;
    border: 4px solid white;
}

.hero-img--secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 50px;
    left: 20px;
    background: white;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(88, 28, 135, 0.12);
    animation: float-card 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-950);
    flex-shrink: 0;
}

.floating-card-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.floating-card-value {
    display: block;
    font-size: 14px;
    color: var(--plum-900);
    font-weight: 600;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--plum-400);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fade-scroll 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--plum-400), transparent);
    animation: scroll-line-anim 2s ease-in-out infinite;
}

@keyframes fade-scroll {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes scroll-line-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--plum-100);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-600), var(--plum-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(88, 28, 135, 0.12);
    border-color: var(--plum-200);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--amber::before {
    background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
}

.service-card--amber:hover {
    border-color: var(--amber-200);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    margin-bottom: 20px;
    transition: background var(--transition-base), transform var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-800));
    color: white;
    transform: scale(1.05);
}

.service-card--amber .service-icon {
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    color: var(--amber-700);
}

.service-card--amber:hover .service-icon {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--plum-950);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--plum-950);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--plum-700);
    text-decoration: none;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card--amber .service-link {
    color: var(--amber-700);
}

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

.service-card--amber .service-link:hover {
    color: var(--amber-800);
}

/* --- About --- */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-floating-stat {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: white;
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.about-stat-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    font-weight: 500;
}

.about-geo {
    position: absolute;
    pointer-events: none;
}

.about-geo--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(251, 191, 36, 0.15);
    top: -100px;
    right: -100px;
}

.about-geo--stripes {
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(251, 191, 36, 0.1) 8px,
        rgba(251, 191, 36, 0.1) 16px
    );
    bottom: -40px;
    left: -40px;
    transform: rotate(15deg);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    margin-bottom: 36px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.about-value span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--plum-100);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(88, 28, 135, 0.1);
}

.why-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--plum-100);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition-base);
}

.why-card:hover .why-card-number {
    color: var(--plum-200);
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--plum-950);
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* --- Testimonials --- */
.testimonials {
    overflow: hidden;
}

.testimonials-geo {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    border: 1px solid transparent;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(88, 28, 135, 0.08);
    border-color: var(--plum-100);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1;
    color: var(--plum-200);
    position: absolute;
    top: 16px;
    right: 28px;
    pointer-events: none;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-200), var(--plum-100));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--plum-950);
}

.testimonial-role {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    pointer-events: none;
}

.cta-geo--circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    top: -100px;
    left: -80px;
}

.cta-geo--circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.08);
    bottom: -60px;
    right: 10%;
}

.cta-geo--line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    top: 50%;
    right: 5%;
    transform: rotate(-30deg);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Contact --- */
.contact-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--plum-950);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--plum-700);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--plum-100);
    box-shadow: 0 8px 30px rgba(88, 28, 135, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--plum-900);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--plum-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--plum-950);
    background: var(--plum-50);
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%237e22ce' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--plum-700);
}

.form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--plum-950);
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact svg {
    color: var(--amber-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: white;
}

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

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-image-grid {
        height: 460px;
    }
    
    .hero-img--main {
        width: 280px;
        height: 350px;
    }
    
    .hero-img--accent {
        width: 160px;
        height: 160px;
    }
    
    .hero-img--secondary {
        width: 220px;
        height: 160px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-image-grid {
        height: 380px;
    }
    
    .hero-img--main {
        width: 220px;
        height: 280px;
    }
    
    .hero-img--accent {
        width: 130px;
        height: 130px;
        bottom: 100px;
    }
    
    .hero-img--secondary {
        width: 180px;
        height: 130px;
        bottom: 0;
        right: 20px;
    }
    
    .hero-floating-card {
        top: 20px;
        left: 10px;
        padding: 12px 16px;
    }
    
    .hero-stats {
        padding: 20px;
        gap: 0;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-floating-stat {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-image-grid {
        height: 320px;
    }
    
    .hero-img--main {
        width: 170px;
        height: 220px;
    }
    
    .hero-img--accent {
        width: 110px;
        height: 110px;
    }
    
    .hero-img--secondary {
        width: 150px;
        height: 110px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat:not(:last-child) {
        padding-right: 0;
        border-bottom: 1px solid var(--plum-100);
        padding-bottom: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
