:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F2E4AA;
    --color-gold-dark: #A68623;
    --color-black: #050505;
    /* Deep brutal black */
    --color-black-pure: #000000;
    --color-black-soft: #111111;
    --color-white: #FFFFFF;
    --color-gray-light: #F4F4F4;
    --color-gray-text: #888888;
    --color-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    --shadow-brutal: 0 0 0 1px var(--color-border);

    --radius-none: 0;
    /* Sharp for brutalist elements */
    --radius-soft: 4px;
    /* Reduced from 8px for sharper look */
    --radius-pill: 50px;

    --max-width: 1400px;
    /* Wider for globalized desktop */
    --padding-section: 8rem 2rem;
    /* More air between sections */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Fix for iOS 100vh jump */
    min-height: -webkit-fill-available;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: -webkit-fill-available;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button,
.btn {
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-align: center;
    /* Enforce global centering */
    width: 100%;
    /* Ensure it takes full width for centering */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Components */
.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.header-scrolled {
    padding: 0.4rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

header.header-scrolled .logo-img {
    height: 55px;
}

header .btn-whatsapp {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

header.header-scrolled .btn-whatsapp {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header.header-scrolled .logo-img {
        height: 45px;
    }

    header .btn-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    /* Increased for better visibility */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
        /* Slightly smaller on mobile */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax - Careful on iOS */
    position: relative;
    color: var(--color-white);
}

/* Fix for background-attachment: fixed on iOS */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.5) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    padding-top: 2rem;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.type-effect {
    position: relative;
    display: inline-block;
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-desc {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: #cccccc;
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

.btn-outline {
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Adjustments for Hero */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        /* Center buttons on mobile */
    }

    .btn-lg,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-item {
        align-items: center;
        min-width: 80px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

/* Audience "Who is this for" */
.audience {
    padding: var(--padding-section);
    background: #000;
    /* Deep black for contrast */
    color: var(--color-white);
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.audience-card {
    background: var(--color-black-pure);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Minimalist border */
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: var(--radius-none);
    /* Sharp brutalist corners */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 1;
}

.audience-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--color-gold);
}

.highlight-card {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border-color: rgba(212, 175, 55, 0.3);
}

.profile-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    transition: all 0.4s ease;
}

.audience-card:hover .profile-icon {
    color: var(--color-gold);
    transform: scale(1.1);
}

.divider-center {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 1rem auto;
    opacity: 0.3;
    transition: width 0.3s;
}

.audience-card:hover .divider-center {
    width: 80px;
    opacity: 1;
}

.audience-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: var(--color-white);
}

.audience-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Qualification Bar */
.qualification-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid #222;
    padding-top: 3rem;
    flex-wrap: wrap;
}

.q-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.q-item i {
    color: var(--color-gold);
}

/* Problem Section */
.problem {
    padding: var(--padding-section);
    background: var(--color-gray-light);
    position: relative;
}

.problem-header {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    justify-content: center;
}

.assurance-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-none);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: none;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.assurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--color-gold);
}

.icon-box {
    min-width: 70px;
    height: 70px;
    background: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

.assurance-card:hover .icon-box {
    background: var(--color-gold);
    color: var(--color-white);
}

.card-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-black-soft);
    font-style: italic;
}

.divider-small {
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    margin: 0.8rem 0;
    opacity: 0.5;
}

.card-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .assurance-card {
        flex-direction: column;
    }

    .icon-box {
        margin-bottom: 1rem;
    }
}

/* Services / Solution */
.services {
    padding: var(--padding-section);
    background: #fff;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    text-align: left;
    padding: 4rem 2.5rem;
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: var(--radius-none);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray-text);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.8rem;
}

/* Featured Service Card (Ceramic) */
.featured-service {
    background: var(--color-black-soft);
    color: var(--color-white);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-service h3 {
    color: var(--color-white);
}

.featured-service p {
    color: #ccc;
}

.featured-service .service-features {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.featured-service .service-features li {
    color: #ddd;
}

.featured-service:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-service .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
}

.featured-service:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-white);
}


/* Process Timeline */
.process {
    padding: var(--padding-section);
    background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    /* Darker luxury background */
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.process h2 {
    color: var(--color-white);
}

/* Process: The Monolith List */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 6rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline::after {
    display: none;
}

.timeline-item {
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reset Left/Right positioning */
.timeline-item.left,
.timeline-item.right {
    left: auto;
    right: auto;
    padding: 0;
    text-align: left;
}

/* Remove Dots */
.timeline-item::after {
    display: none;
}

.timeline-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.timeline-content:hover {
    background: var(--color-gold);
    border-bottom-color: var(--color-gold);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* The Number */
.step-count {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.8;
    transition: all 0.4s;
    font-family: var(--font-heading);
}

.timeline-content:hover .step-count {
    color: #000;
    transform: translateX(10px);
}


.timeline-content:hover .step-count {
    color: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

/* Icon */
.step-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Typography */
.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.timeline-content p {
    color: #888;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
        text-align: left;
        margin: 3rem 0;
    }

    .timeline-item::after {
        left: -6px !important;
        right: auto !important;
    }

    .timeline-item.left {
        left: 0;
        text-align: left;
        padding-left: 30px;
        padding-right: 0;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .step-count {
        right: auto;
        left: 20px;
    }

    .timeline-content {
        padding: 2rem;
    }
}

/* Results / Portfolio Carousel */
.portfolio {
    padding: var(--padding-section);
    overflow: hidden;
    /* Important for carousel */
    background: #fff;
}

.portfolio-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 2rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 400px;
    /* Fixed width for better control */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by the width of the first 4 items + their gaps */
        /* 4 items * 400px + 4 gaps * 32px (2rem) = 1600 + 128 = 1728px */
        /* But using calc is safer if gap or width changes */
        transform: translateX(calc(-50% - 1rem));
    }
}

.before-after {
    position: relative;
    border-radius: var(--radius-none);
    overflow: hidden;
    height: 450px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid #eee;
}

.before-after:hover {
    transform: scale(1.03);
    border-color: var(--color-gold);
    z-index: 10;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Carousel Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 300px;
    }

    .before-after {
        height: 350px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 1rem));
        }
    }
}

/* Pricing */
.pricing {
    padding: var(--padding-section);
    background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.premium-card {
    background: var(--color-white);
    border-radius: var(--radius-none);
    padding: 4rem 2.5rem;
    box-shadow: none;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-color: var(--color-gold);
}

.gold-border {
    border: 2px solid var(--color-gold);
    background: #fafafa;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--color-gray-text);
    font-size: 0.95rem;
}

.price-block {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--color-black);
}

.price-block .currency {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-text);
}

.price-block .amount {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Inclusions Section */
.inclusions-section {
    background: var(--color-black-soft);
    color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-soft);
    margin-top: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.inclusions-section h3 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.inclusion-item.full-width {
    grid-column: 1 / -1;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: var(--radius-soft);
    margin-top: 1rem;
}

.hover-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Authority Section Refined */
.authority {
    padding: var(--padding-section);
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Final CTA Section - High Conversion */
.cta-final {
    background: #111;
    padding: 6rem 1rem;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.2;
}

.cta-final p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    color: #ddd;
}

.cta-badge i {
    color: var(--color-gold);
}

.btn-final {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-soft);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-final:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #fff;
    color: var(--color-black);
}

.btn-final i {
    font-size: 1.5rem;
}

/* Professional Footer */
footer {
    background: #0a0a0a;
    color: #888;
    padding: 6rem 0 3rem;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-contact-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Mobile Footer adjustments */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cta-final h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    .authority {
        grid-template-columns: 1fr;
    }

    .portfolio-carousel {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-none);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 2;
    border: 1px solid #eee;
}

.image-frame img {
    width: 100%;
    display: block;
    filter: grayscale(10%) contrast(105%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.profile-wrapper:hover .image-frame img {
    transform: scale(1.03);
}

/* Luxury Gold Border Offset */
.profile-image::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -25px;
    bottom: -25px;
    left: 30px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-soft);
    z-index: 1;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.profile-wrapper:hover .profile-image::after {
    top: 15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
    opacity: 1;
}

.profile-text {
    flex: 1.2;
}

.profile-text .section-title {
    color: var(--color-black);
    text-align: left;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2rem;
}

.lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--color-gold);
}

.bio-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.bio-text strong {
    color: var(--color-black);
    font-weight: 600;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.credential-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
}

/* Responsiveness Refined */
@media (max-width: 1024px) {
    .profile-wrapper {
        gap: 3rem;
    }

    .profile-text .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .profile-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .profile-text .section-title {
        text-align: center;
        margin-top: 2rem;
    }

    .lead-text {
        padding-left: 0;
        text-align: center;
    }

    .lead-text::before {
        display: none;
    }

    .profile-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .profile-image::after {
        display: none;
        /* Cleaner on small mobile */
    }

    .credentials {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        text-align: center;
    }

    .credential-item {
        align-items: center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .section-title {
        font-size: 2.2rem !important;
        letter-spacing: -0.02em;
        margin-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero-stats {
        gap: 1rem;
        padding-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
        text-align: center;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        gap: 1rem;
    }
}