/* Reset & Base Styles */
:root {
    --color-bg: #0a0a0a;
    --color-bg-darker: #050505;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-gold: #c5a059;
    --color-gold-light: #e6c88b;
    --color-gold-dark: #8a6e36;
    --color-accent: #1a1a1a;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    --transition: all 0.3s ease;
    --shadow-gold: 0 0 20px rgba(197, 160, 89, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--color-gold);
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: 0s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.gold-dot {
    color: var(--color-gold);
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links .btn-nav {
    padding: 10px 20px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 2px;
}

.nav-links .btn-nav:hover {
    background: var(--color-gold);
    color: #000;
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, #1a1a1a 0%, #0a0a0a 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0.4) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMTk3LCAxNjAsIDg5LCAwLjA1KSIvPjwvc3ZnPg==');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge-premium {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-micro-credentials {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.micro-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.micro-item i {
    color: var(--color-gold);
}

.hero-img-wrapper {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img {
    max-height: 100%;
    width: auto;
    position: relative;
    z-index: 2;
    filter: contrast(1.1) brightness(0.9);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.gold-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    /* Fallback if not loaded, but using Cinzel for now */
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    font-style: italic;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #111;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #0f0f0f;
    padding: 40px 30px;
    border-top: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-top-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.icon-box {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

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

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.premium-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.premium-list i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.premium-list strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.premium-list p {
    color: var(--color-text-muted);
}

.why-visual {
    display: flex;
    justify-content: center;
}

.gold-border-box {
    border: 2px solid var(--color-gold);
    padding: 60px;
    position: relative;
    text-align: center;
}

.gold-border-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    z-index: -1;
}

.gold-border-box h3 {
    font-size: 2.5rem;
    line-height: 1.3;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #111;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.client-name {
    font-weight: 700;
    color: var(--color-gold);
}

.client-case {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #111;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.step-line {
    flex: 0.5;
    height: 2px;
    background: rgba(197, 160, 89, 0.3);
    margin-top: 30px;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* CTA Final */
.cta-final {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

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

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

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

.footer-oab {
    text-align: right;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-sub {
        margin: 0 auto 40px;
        border-left: none;
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-micro-credentials {
        justify-content: center;
    }

    .hero-img-wrapper {
        height: 50vh;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.1rem;
        /* Much smaller to fit "DR. TONY PASCOALINI" */
        letter-spacing: 1px;
        max-width: 80%;
        /* Ensure space for hamburger */
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 120px;
        /* More space for fixed header */
        min-height: auto;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-sub {
        font-size: 1rem;
        border-left: none;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        /* Slightly smaller padding */
    }

    .hero-micro-credentials {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
        margin-top: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-oab {
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gold-border-box {
        padding: 30px 20px;
    }

    .gold-border-box h3 {
        font-size: 1.5rem;
    }

    .hero-img-wrapper {
        height: 40vh;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 0.9rem;
        /* Even smaller for very narrow screens */
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Smaller headline */
    }

    .badge-premium {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}