/* ── Base & Utilities ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; }

/* ── Header ── */
#header {
    background: transparent;
    transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
#header.scrolled {
    background: rgba(250, 245, 251, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(123, 45, 139, 0.08);
}

/* ── Buttons ── */
.btn-primary {
    background: linear-gradient(135deg, #F5A623 0%, #e8920e 100%);
    color: #3a1643;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

/* ── Inputs ── */
.input-field {
    border: 1.5px solid #ebd0e8;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #3a1643;
    background: #faf5fb;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    width: 100%;
}
.input-field:focus {
    border-color: #7B2D8B;
    box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.1);
    background: #fff;
}
.input-field::placeholder { color: #dbaed4; }

/* ── Service Cards ── */
.service-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0;
    border: 1px solid #f5e9f5;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 45, 139, 0.12);
}

/* ── Mobile Menu ── */
.mobile-link {
    border-bottom: 1px solid #f5e9f5;
    padding: 0.75rem 0;
}
.mobile-link:last-child { border-bottom: none; }

/* ── Geometric Shapes ── */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}
.geo-circle-1 {
    width: 420px; height: 420px;
    border-radius: 50%;
    background: #F5A623;
    top: -100px; left: -100px;
    animation: float-slow 20s ease-in-out infinite;
}
.geo-circle-2 {
    width: 260px; height: 260px;
    border-radius: 50%;
    background: #ebd0e8;
    bottom: 10%; right: 5%;
    animation: float-slow 16s ease-in-out infinite reverse;
}
.geo-circle-3 {
    width: 140px; height: 140px;
    border-radius: 50%;
    background: #ffd96d;
    top: 25%; right: 15%;
    animation: float-slow 12s ease-in-out infinite;
}
.geo-square-1 {
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 1.5rem;
    top: 15%; left: 10%;
    transform: rotate(45deg);
    animation: spin-slow 25s linear infinite;
}
.geo-square-2 {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    bottom: 20%; left: 20%;
    transform: rotate(20deg);
    animation: spin-slow 20s linear infinite reverse;
}
.geo-triangle-1 {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(255,255,255,0.08);
    top: 40%; right: 8%;
    animation: float-slow 14s ease-in-out infinite;
}
.geo-dots {
    width: 200px; height: 200px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 16px 16px;
    bottom: 15%; right: 25%;
}
.geo-diamond-1 {
    width: 200px; height: 200px;
    background: rgba(245,166,35,0.15);
    border-radius: 1rem;
    top: 10%; right: 5%;
    transform: rotate(45deg);
    animation: spin-slow 30s linear infinite;
}
.geo-circle-4 {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    bottom: -80px; left: -80px;
    animation: float-slow 18s ease-in-out infinite;
}
.geo-stripe-1 {
    width: 400px; height: 4px;
    background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
    top: 50%; left: -50px;
    transform: rotate(-15deg);
}

/* ── Animations ── */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}
@keyframes spin-slow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* ── Scroll Reveal ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .geo-circle-1 { width: 250px; height: 250px; }
    .geo-circle-2 { width: 160px; height: 160px; }
    .geo-circle-3 { display: none; }
    .geo-square-1 { width: 70px; height: 70px; }
    .geo-square-2 { display: none; }
    .geo-triangle-1 { display: none; }
    .geo-dots { width: 120px; height: 120px; }
    .geo-diamond-1 { width: 120px; height: 120px; }
    .geo-circle-4 { width: 200px; height: 200px; }
    .geo-stripe-1 { width: 250px; }
}
