/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --background: 40 20% 97%;
    --foreground: 220 40% 13%;
    --card: 0 0% 100%;
    --card-foreground: 220 40% 13%;
    --primary: 220 50% 15%;
    --primary-foreground: 40 30% 95%;
    --secondary: 40 25% 92%;
    --secondary-foreground: 220 40% 13%;
    --muted: 220 15% 92%;
    --muted-foreground: 220 10% 46%;
    --accent: 42 78% 50%;
    --accent-foreground: 220 50% 10%;
    --border: 220 15% 88%;
    --gold: 42 78% 50%;
    --gold-light: 42 70% 65%;
    --navy: 220 50% 15%;
    --navy-light: 220 35% 25%;
    --cream: 40 30% 95%;
    --radius: 0.375rem;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif !important;
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px
    }
}

.gradient-gold {
    background: linear-gradient(135deg, hsl(42 78% 50%), hsl(42 70% 65%))
}

.gradient-navy {
    background: linear-gradient(135deg, hsl(220 50% 15%), hsl(220 35% 25%))
}

.text-gradient-gold {
    background: linear-gradient(135deg, hsl(42 78% 50%), hsl(42 70% 65%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.text-gold {
    color: hsl(var(--gold))
}

.text-cream {
    color: hsl(var(--cream))
}

.text-muted {
    color: hsl(var(--muted-foreground))
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    height: 100px;
    
}
/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(220, 50%, 15%, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsla(220, 35%, 25%, 0.3)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.navbar-brand {
    display: flex;
    flex-direction: column
}

.navbar-brand .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--cream));
    letter-spacing: 0.05em
}

.navbar-brand .name span {
    color: hsl(var(--gold))
}

.navbar-brand .est {
    font-size: 0.75rem;
    color: hsla(40, 30%, 95%, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(40, 30%, 95%, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s
}

.nav-links a:hover {
    color: hsl(var(--gold))
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: hsl(var(--accent-foreground));
    transition: opacity 0.3s
}

.nav-cta:hover {
    opacity: 0.9
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: hsl(var(--cream));
    font-size: 1.5rem;
    cursor: pointer
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 1rem 1rem;
    gap: 0.75rem;
    background: hsl(var(--primary))
}

.mobile-menu a {
    font-size: 0.875rem;
    color: hsla(40, 30%, 95%, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid hsla(220, 35%, 25%, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.mobile-menu .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.75rem
}

@media(max-width:1023px) {

    .nav-links,
    .navbar>.container>.nav-cta {
        display: none
    }

    .hamburger {
        display: block
    }

    .mobile-menu.open {
        display: flex
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: hsl(var(--primary))
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(220, 50%, 15%, 0.95), hsla(220, 50%, 15%, 0.80), hsla(220, 50%, 15%, 0.40))
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    padding-bottom: 4rem;
    margin-left: 10%;
}

.hero-content {
    max-width: 640px
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--gold));
    border: 1px solid hsla(42, 78%, 50%, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--cream));
    line-height: 1.15;
    margin-bottom: 1.5rem
}

.hero p {
    font-size: 1.125rem;
    color: hsla(40, 30%, 95%, 0.75);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7
}

.hero p strong {
    color: hsl(var(--cream))
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: hsl(var(--accent-foreground));
    transition: opacity 0.3s
}

.btn-gold:hover {
    opacity: 0.9
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid hsla(40, 30%, 95%, 0.3);
    color: hsl(var(--cream));
    transition: border-color 0.3s, color 0.3s
}

.btn-outline:hover {
    border-color: hsl(var(--gold));
    color: hsl(var(--gold))
}

.hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px
}

@media(min-width:640px) {
    .hero h1 {
        font-size: 3rem
    }

}

@media(max-width:640px) {
    .hero .container {
        margin-left: 0 !important;
    }
}

@media(min-width:1024px) {
    .hero h1 {
        font-size: 3.75rem
    }
}

/* ===== QUICK CONTACT ===== */
.quick-contact {
    position: relative;
    z-index: 10;
    background: hsl(var(--primary))
}

.quick-contact-grid {
    display: grid;
    margin-top: -2rem;
    position: relative;
    z-index: 20
}

.qc-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.qc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem
}

.qc-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem
}

.qc-card.gold {
    color: hsl(var(--accent-foreground))
}

.qc-card.gold p {
    color: hsla(220, 50%, 10%, 0.8)
}

.qc-card.dark {
    background: hsl(var(--navy-light))
}

.qc-card.dark h3 {
    color: hsl(var(--cream))
}

.qc-card.dark p {
    color: hsla(40, 30%, 95%, 0.7)
}

.qc-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem
}

.qc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s
}

.qc-btn.dark-btn {
    background: hsl(var(--primary));
    color: hsl(var(--cream))
}

.qc-btn.dark-btn:hover {
    background: hsl(var(--navy-light))
}

.qc-btn.gold-btn {
    color: hsl(var(--accent-foreground))
}

.qc-btn.gold-btn:hover {
    opacity: 0.9
}

.qc-hours {
    font-size: 0.875rem;
    color: hsla(220, 50%, 10%, 0.8);
    margin-top: 0.5rem
}

.qc-hours div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0
}

.qc-hours .divider {
    width: 100%;
    height: 1px;
    background: hsla(220, 50%, 10%, 0.2);
    margin: 0.25rem 0
}

@media(min-width:768px) {
    .quick-contact-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -3rem
    }

    .qc-card:first-child {
        border-radius: 0.5rem 0 0 0
    }

    .qc-card:last-child {
        border-radius: 0 0.5rem 0 0
    }
}

/* ===== SERVICES ===== */
.services {
    padding: 5rem 0;
    background: hsl(var(--background))
}

.section-header {
    text-align: center;
    margin-bottom: 4rem
}

.section-label {
    color: hsl(var(--gold));
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-top: 0.75rem
}

.section-bar {
    width: 4rem;
    height: 4px;
    margin: 1rem auto 0;
    border-radius: 9999px
}

.services-grid {
    display: grid;
    gap: 1.5rem
}

@media(min-width:768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .section-title {
        font-size: 2.25rem
    }
}

.service-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s
}

.service-card:hover {
    border-color: hsla(42, 78%, 50%, 0.4);
    box-shadow: 0 10px 30px -10px hsla(42, 78%, 50%, 0.05)
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem
}

.service-card .keyword {
    font-size: 0.875rem;
    color: hsl(var(--gold));
    font-weight: 500;
    margin-bottom: 1rem
}

.service-card li {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem
}

.service-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: hsl(var(--gold));
    margin-top: 0.375rem;
    flex-shrink: 0
}

/* ===== HOW IT WORKS ===== */
/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9f6ef, #f3efe6);
    position: relative;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a646;
    border: 1px solid rgba(201, 166, 70, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
}

/* GRID */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media(min-width:768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CARD */
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* GOLD TOP BORDER ANIMATION */
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(135deg, #d4af37, #f6d776);
    transition: width 0.4s ease;
}

.step-card:hover::before {
    width: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* STEP NUMBER */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: #d4af37;
}

/* ICON */
.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: #d4af37;
}

/* TITLE */
.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* CTA */
.steps-cta {
    text-align: center;
    margin-top: 3rem;
}

.steps-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #f6d776);
    color: #000;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.steps-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 5rem 0
}

.why-grid {
    display: grid;
    gap: 4rem;
    align-items: center
}

@media(min-width:1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr
    }
}

.why-text .label {
    color: hsl(var(--gold));
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase
}

.why-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--cream));
    margin: 0.75rem 0 1.5rem
}

.why-text p {
    color: hsla(40, 30%, 95%, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.why-text p strong {
    color: hsl(var(--cream))
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.stat-card {
    background: hsla(220, 35%, 25%, 0.5);
    border: 1px solid hsla(40, 30%, 95%, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s
}

.stat-card:hover {
    border-color: hsla(42, 78%, 50%, 0.3)
}

.stat-card .value {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--cream));
    margin: 0.75rem 0 0.25rem
}

.stat-card .label {
    font-size: 0.875rem;
    color: hsla(40, 30%, 95%, 0.6)
}

@media(min-width:1024px) {
    .why-text h2 {
        font-size: 2.25rem
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: hsl(var(--secondary))
}

.testimonial-box {
    max-width: 48rem;
    margin: 0 auto;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 2rem 3rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: hsla(42, 78%, 50%, 0.15)
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--gold))
}

.star.empty {
    color: hsl(var(--border))
}

.testimonial-text {
    color: hsla(220, 40%, 13%, 0.8);
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 560px
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground))
}

.testimonial-case {
    font-size: 0.875rem;
    color: hsl(var(--gold));
    font-weight: 500
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem
}

.t-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground))
}

.t-btn:hover {
    border-color: hsla(42, 78%, 50%, 0.4)
}

.dots {
    display: flex;
    gap: 0.5rem
}

.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: hsl(var(--border));
    cursor: pointer;
    border: none;
    transition: background 0.3s
}

.dot.active {
    background: hsl(var(--gold))
}

/* ===== COURTS ===== */
.courts {
    padding: 5rem 0;
    background: hsl(var(--secondary))
}

.courts-grid {
    display: grid;
    gap: 1.5rem
}

@media(min-width:640px) {
    .courts-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .courts-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.court-card {
    background: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: border-color 0.3s
}

.court-card:hover {
    border-color: hsla(42, 78%, 50%, 0.4)
}

.court-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 1rem 0 0.5rem
}

.court-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground))
}

/* ===== FAQ ===== */
.faq {
    padding: 5rem 0;
    background: hsl(var(--background))
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.faq-item {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    overflow: hidden;
    transition: border-color 0.3s
}

.faq-item.open {
    border-color: hsla(42, 78%, 50%, 0.4)
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    text-align: left;
    transition: color 0.3s
}

.faq-question:hover {
    color: hsl(var(--gold))
}

.faq-question .chevron {
    font-size: 1.25rem;
    transition: transform 0.3s;
    color: hsl(var(--muted-foreground))
}

.faq-item.open .chevron {
    transform: rotate(180deg)
}

.faq-answer {
    padding: 0 1.5rem 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    display: none
}

.faq-item.open .faq-answer {
    display: block
}

/* ===== CONTACT ===== */
.contact {
    padding: 5rem 0
}

.contact-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto
}

@media(min-width:768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: hsla(220, 35%, 25%, 0.5);
    border: 1px solid hsla(40, 30%, 95%, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: border-color 0.3s
}

.contact-card:hover {
    border-color: hsla(42, 78%, 50%, 0.4)
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--cream));
    margin: 1rem 0 0.25rem
}

.contact-card p {
    font-size: 0.875rem;
    color: hsla(40, 30%, 95%, 0.6)
}

.contact-cta {
    text-align: center;
    margin-top: 3rem
}

/* ===== FOOTER ===== */
.footer {
    background: hsl(var(--primary));
    padding: 2rem 0;
    border-top: 1px solid hsla(220, 35%, 25%, 0.3);
    text-align: center
}

.footer .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--cream))
}

.footer .name span {
    color: hsl(var(--gold))
}

.footer .copy {
    color: hsla(40, 30%, 95%, 0.5);
    font-size: 0.875rem;
    margin-top: 0.25rem
}

.footer .tagline {
    color: hsla(40, 30%, 95%, 0.4);
    font-size: 0.75rem;
    margin-top: 0.5rem
}

/* ===== WHATSAPP ===== */
.whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
    border: none;
    cursor: pointer
}

.whatsapp:hover {
    transform: scale(1.1)
}

.whatsapp .pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 1rem;
    height: 1rem;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

/* ===== SVG ICONS INLINE ===== */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0
}

.icon-lg {
    width: 2.5rem;
    height: 2.5rem
}

.icon-md {
    width: 2rem;
    height: 2rem
}

.icon-gold {
    color: hsl(var(--gold))
}

.icon-white {
    color: white
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;

    /* HERO BACKGROUND IMAGE */
    background-image: url('./images/hero-law.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Optional gradient overlay via pseudo-element */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(220deg 50% 15% / 95%)(0, 0, 0, 0.8)
            /* rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.3) */
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    /* so it sits above overlay */
    z-index: 1;
}

.footer {
    background: #04152d;
    /* dark blue */
    color: #f5f7fb;
}

.footer-legal-links,
.footer-services {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    text-align: left;
}

.footer-legal-links a {
    color: #e2e8f0;
    /* light grey-blue, visible on dark */
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffd46a;
    /* accent on hover */

}

.footer-legal-links .sep {
    margin: 0 0.5rem;
    color: #64748b;
    /* softer separator color */
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1 1 250px;
    text-align: left;
}

.footer-services {
    flex: 3 1 500px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-column h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li a {
    display: block;
    padding: 2px 0;
    text-decoration: none;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 0.75rem 0;
    text-align: center;
}

.how-it-works {
    padding: 4rem 0;
    background: #fffcf4;
    /* warm off-white */
    color: #1f2933;
}

/* HEADER */

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4b5563;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.section-title {
    margin-top: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.section-title .text-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    margin: 1rem auto 0;
    max-width: 40rem;
    font-size: 1.05rem;
    color: #6b7280;
}

/* GRID */

.steps-grid {
    display: grid;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* CARDS */

.step-card {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, #ffffff, #f3f4ff);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 55%);
    opacity: 0;
    transition: opacity 150ms ease;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    background: radial-gradient(circle at top left, #ffffff, #e5f2ff);
}

.step-card:hover::after {
    opacity: 1;
}

/* BADGE */

.step-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #eff6ff, #bfdbfe);
    color: #1f2937;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ICON CIRCLE */

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.icon-gold {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
}

/* TEXT */

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* CTA */

.steps-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.steps-cta-btn {
    font-size: 1.05rem;
    padding-inline: 1.75rem;
    padding-block: 0.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.steps-cta-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 24px;
    /* adjust spacing */
}

.widthh {
    width: 100% !important;
    text-align: left !important;
}

/* Optional: responsive breakpoints */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.text-cream\/60 {
    color: hsl(var(--cream) / .6);
}

.text-cream\/70 {
    color: hsl(var(--cream) / .7);
}

.text-cream\/80 {
    color: hsl(var(--cream) / .8);
}

.from-card {
    --tw-gradient-from: hsl(0 0% 10%) var(--tw-gradient-from-position) !important;
    --tw-gradient-to: hsl(0 0% 10% / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    color: #fff;
}

.font-heading {
    color: #fff !important;
}

.font-we {
    color: black !important;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== MOBILE FIX ===== */
@media(max-width:768px) {

    .for-mobile {
        padding-left: 10px;
        padding-right: 10px;
    }
}