/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

:root {
    --gold-primary: #bf9d61;
    --gold-light: #d4b680;
    --gold-dark: #a8864e;
    --black: #000000;
    --black-light: #000000;
    --black-lighter: #0a0a0a;
    --white: #ffffff;
    --gray-light: #cccccc;
    --gray: #999999;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tertiary: 'Cormorant Garamond', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: #000000;
    color: var(--gold-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Prevent any element from causing horizontal scroll */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

.container, section, div {
    max-width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/enfinity-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(191, 157, 97, 0.3);
    transition: var(--transition);
}

section {
    position: relative;
    z-index: 1;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(191, 157, 97, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.nav-logo-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(191, 157, 97, 0.4));
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-enfinity {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 0.2rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(191, 157, 97, 0.5);
}

.brand-agency {
    font-family: var(--font-secondary);
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 0.3rem;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.1rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000000;
    width: 100%;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(191, 157, 97, 0.03) 2px, rgba(191, 157, 97, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(191, 157, 97, 0.03) 2px, rgba(191, 157, 97, 0.03) 4px);
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(191, 157, 97, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-enfinity {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 1rem;
    text-shadow: 
        0 0 20px rgba(191, 157, 97, 0.8),
        0 0 40px rgba(191, 157, 97, 0.5),
        0 0 60px rgba(191, 157, 97, 0.3);
    animation: goldShimmer 3s ease-in-out infinite;
}

.logo-agency {
    font-family: var(--font-secondary);
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 1rem;
    margin-top: 0.5rem;
}

@keyframes goldShimmer {
    0%, 100% { text-shadow: 0 0 20px rgba(191, 157, 97, 0.8), 0 0 40px rgba(191, 157, 97, 0.5); }
    50% { text-shadow: 0 0 30px rgba(191, 157, 97, 1), 0 0 60px rgba(191, 157, 97, 0.7), 0 0 90px rgba(191, 157, 97, 0.4); }
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.gold-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero-tagline h2 {
    font-family: var(--font-tertiary);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.3rem;
    font-style: italic;
}

.hero-name {
    margin: 3rem 0;
}

.hero-name h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.05rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.hero-highlight {
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 0.15rem;
    margin-top: 0.5rem;
}

.hero-credentials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.credential-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(191, 157, 97, 0.1);
    border: 1px solid var(--gold-primary);
    transition: var(--transition);
}

.credential-badge:hover {
    background: rgba(191, 157, 97, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.3);
}

.credential-badge i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.credential-badge span {
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 0.05rem;
    font-weight: 600;
}

.credential-badge.featured-badge {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.2) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid var(--gold-primary);
}

.credential-badge.featured-badge a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition);
}

.credential-badge.featured-badge:hover a {
    color: var(--gold-primary);
}

.credential-badge.featured-badge:hover {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-color: var(--gold-light);
}

.hero-urgency {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-urgency p {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin: 0;
}

.hero-urgency i {
    color: #ff4444;
    margin-right: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--gold-primary);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-large i {
    transition: var(--transition);
    font-size: 1rem;
}

.btn-large:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 0.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(191, 157, 97, 0.3);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto 2rem;
}

.section-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--gold-primary);
    box-shadow: 
        0 0 40px rgba(191, 157, 97, 0.4),
        0 10px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(191, 157, 97, 0.1);
    transition: var(--transition);
}

.image-frame:hover {
    border-color: var(--gold-light);
    box-shadow: 
        0 0 60px rgba(191, 157, 97, 0.6),
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(191, 157, 97, 0.2);
    transform: translateY(-10px);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    object-fit: cover;
    object-position: left center;
    aspect-ratio: 3 / 4;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.overlay-text h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-primary);
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-family: var(--font-secondary);
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.testimonial-highlight {
    margin: 5rem 0;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.08) 0%, rgba(0, 0, 0, 0.98) 100%);
    border-left: 5px solid var(--gold-primary);
    border-right: 5px solid var(--gold-primary);
    border-radius: 4px;
    position: relative;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: var(--font-tertiary);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    margin-top: 2rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.testimonial-author p {
    color: var(--gray-light);
    font-size: 1rem;
    margin: 0;
}

.about-credentials-section {
    margin-top: 3rem;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    color: var(--gray-light);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.highlight {
    color: var(--gold-primary);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.getty-proof {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-left: 4px solid var(--gold-primary);
    border-right: 4px solid var(--gold-primary);
}

.getty-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition);
}

.getty-link:hover {
    color: var(--gold-primary);
    transform: translateX(10px);
}

.getty-link i:first-child {
    font-size: 2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.getty-link i:last-child {
    font-size: 1rem;
    margin-left: auto;
}

.getty-link span {
    flex: 1;
    line-height: 1.6;
}

.getty-link strong {
    display: block;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(191, 157, 97, 0.05);
    border: 1px solid rgba(191, 157, 97, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(191, 157, 97, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-card {
    background: rgba(191, 157, 97, 0.05);
    border: 2px solid var(--gold-primary);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    background: rgba(191, 157, 97, 0.1);
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(191, 157, 97, 0.2);
}

.credential-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.credential-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.credential-card p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.credential-card strong {
    color: var(--gold-light);
    font-weight: 600;
}

.minor-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 1px solid rgba(191, 157, 97, 0.2);
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 157, 97, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(191, 157, 97, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(191, 157, 97, 0.1);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05rem;
}

.service-card p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Package Comparison */
.package-comparison-wrapper {
    margin-top: 4rem;
}

.package-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 0 0 4rem 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.package-option {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.08) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 3px solid var(--gold-primary);
    padding: 4rem 3rem 3rem 3rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 850px;
    width: 100%;
    box-sizing: border-box;
}

.package-option:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(191, 157, 97, 0.35);
    border-color: var(--gold-light);
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.12) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.package-crown,
.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 5px solid #000000;
    box-shadow: 0 5px 20px rgba(191, 157, 97, 0.4);
}

.package-crown i,
.package-icon i {
    font-size: 2.5rem;
    color: var(--black);
}

.package-option h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.package-price {
    margin: 2rem 0;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--gold-primary);
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: var(--gray-light);
}

.package-commitment {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(191, 157, 97, 0.2);
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-features i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.package-savings,
.package-ideal {
    background: rgba(191, 157, 97, 0.2);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--gold-primary);
    text-align: center;
    border-radius: 6px;
}

.package-savings strong,
.package-ideal strong {
    color: var(--gold-primary);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.savings-detail,
.ideal-detail {
    color: var(--gray-light);
    font-size: 0.95rem;
    display: block;
    margin-top: 0.3rem;
}

.package-urgency,
.package-note {
    background: rgba(191, 157, 97, 0.15);
    border: 2px solid var(--gold-primary);
    padding: 1rem 1.5rem;
    margin: 1rem 0 1.5rem 0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 500;
}

.package-urgency {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(191, 157, 97, 0.1) 100%);
    border-color: #ff4444;
}

.package-urgency i {
    color: #ff4444;
    animation: pulse 2s infinite;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.package-note i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Why Choose Sabrina Section */
.why-choose-section {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.05) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 3px solid var(--gold-primary);
    border-radius: 8px;
    padding: 4rem 3rem;
    margin: 5rem 0;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
    text-shadow: 0 0 20px rgba(191, 157, 97, 0.4);
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(191, 157, 97, 0.3);
    border-radius: 8px;
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(191, 157, 97, 0.4);
}

.why-icon i {
    font-size: 2rem;
    color: var(--black);
}

.why-item h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05rem;
}

.why-item p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.proof-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.proof-link:hover {
    color: var(--gold-light);
    gap: 0.7rem;
}

.proof-link i {
    font-size: 0.85rem;
}

.guarantee-box-featured {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid var(--gold-primary);
    border-radius: 8px;
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-box-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(191, 157, 97, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.guarantee-box-featured i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.guarantee-box-featured p {
    font-size: 1.3rem;
    color: var(--gold-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.guarantee-box-featured strong {
    color: var(--gold-primary);
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
}

/* Event Access Section */
.event-access-section {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.08) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 3px solid var(--gold-primary);
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.event-access-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-access-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin: 0;
    letter-spacing: 0.1rem;
}

.event-access-title i {
    margin-right: 1rem;
    font-size: 2rem;
}

.event-access-badge {
    background: rgba(191, 157, 97, 0.2);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin: 0;
}

.event-access-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.event-access-subtitle strong {
    color: var(--gold-primary);
    font-weight: 700;
}

.event-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin: 2.5rem 0;
    width: 100%;
    box-sizing: border-box;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--gold-primary);
    transition: var(--transition);
}

.event-item:hover {
    background: rgba(191, 157, 97, 0.1);
    transform: translateX(10px);
}

.event-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.event-item span {
    color: var(--gray-light);
    text-align: left;
    font-size: 0.95rem;
}

.event-item strong {
    color: var(--gold-light);
}

.event-access-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-left: 4px solid var(--gold-primary);
    border-right: 4px solid var(--gold-primary);
    font-size: 1.15rem;
    color: var(--gold-light);
    line-height: 1.8;
    text-align: center;
}

.event-access-note i {
    color: var(--gold-primary);
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

.event-access-note strong {
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.services-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 4rem 0;
}

.services-subtitle {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.15rem;
    text-shadow: 0 0 20px rgba(191, 157, 97, 0.4);
}

/* ==========================================
   CITIES SECTION
   ========================================== */

.cities-section {
    background: #000000;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.city-card {
    background: rgba(191, 157, 97, 0.05);
    border: 2px solid rgba(191, 157, 97, 0.2);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 157, 97, 0.1), transparent);
    transition: var(--transition);
}

.city-card:hover::before {
    left: 100%;
}

.city-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(191, 157, 97, 0.3);
    background: rgba(191, 157, 97, 0.1);
}

.city-icon {
    width: 70px;
    height: 70px;
    background: rgba(191, 157, 97, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.city-card:hover .city-icon {
    background: var(--gold-primary);
    transform: scale(1.1) rotate(360deg);
}

.city-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
    transition: var(--transition);
}

.city-card:hover .city-icon i {
    color: var(--black);
}

.city-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.city-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.city-card > p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.city-services {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.city-services li {
    color: var(--gold-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(191, 157, 97, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.city-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.city-services li:last-child {
    border-bottom: none;
}

.cities-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid var(--gold-primary);
}

.cities-cta p {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ==========================================
   EXPERIENCE SECTION
   ========================================== */

.experience-section {
    background: #000000;
}

.experience-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 200px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    flex: 1;
    background: rgba(191, 157, 97, 0.03);
    border: 2px solid rgba(191, 157, 97, 0.3);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 100px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 100px;
}

.timeline-content:hover {
    background: rgba(191, 157, 97, 0.1);
    border-color: var(--gold-primary);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(191, 157, 97, 0.2);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: #000000;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -130px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -130px;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05rem;
}

.timeline-role {
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.timeline-location {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    color: var(--gray-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.timeline-content strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background: #000000;
}

.contact-deadlines {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    text-align: left;
}

.contact-deadlines h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-deadlines i {
    color: #ff4444;
    margin-right: 0.5rem;
}

.contact-deadlines ul {
    list-style: none;
    padding: 0;
}

.contact-deadlines li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(191, 157, 97, 0.2);
    color: var(--gray-light);
    font-size: 1rem;
}

.contact-deadlines li:last-child {
    border-bottom: none;
}

.contact-deadlines strong {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(191, 157, 97, 0.05);
    border: 2px solid rgba(191, 157, 97, 0.3);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--gold-primary);
    background: rgba(191, 157, 97, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 157, 97, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}

.info-card a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.info-card a:hover {
    color: var(--gold-primary);
}

.featured-card {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 3px solid var(--gold-primary);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(191, 157, 97, 0.4);
}

.proof-badge {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(191, 157, 97, 0.2);
    border-radius: 3px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.proof-badge i {
    margin-right: 0.5rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(191, 157, 97, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid var(--gold-primary);
    padding: 2.5rem;
    margin-top: 1rem;
}

.contact-cta h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.cta-text {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(191, 157, 97, 0.1);
    border-radius: 6px;
}

.cta-feature i {
    color: var(--gold-primary);
    font-size: 1.3rem;
}

.cta-feature span {
    color: var(--gold-light);
    font-size: 1.05rem;
}

.contact-cta ul {
    list-style: none;
    padding: 0;
}

.contact-cta li {
    color: var(--gray-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-cta i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.contact-cta strong {
    color: var(--gold-light);
}

.inline-proof {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px dashed var(--gold-primary);
    transition: var(--transition);
}

.inline-proof:hover {
    color: var(--gold-light);
    border-bottom-style: solid;
}

.guarantee-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(191, 157, 97, 0.15);
    border: 2px solid var(--gold-primary);
    border-radius: 0;
}

.guarantee-box p {
    margin: 0;
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-box i {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.contact-form {
    background: rgba(191, 157, 97, 0.03);
    border: 2px solid rgba(191, 157, 97, 0.3);
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(191, 157, 97, 0.3);
    color: var(--gold-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(191, 157, 97, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(191, 157, 97, 0.4);
}

.btn-submit i {
    transition: var(--transition);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
    display: block;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #000000;
    border-top: 1px solid rgba(191, 157, 97, 0.3);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(191, 157, 97, 0.2);
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gold-primary);
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.05rem;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(191, 157, 97, 0.1);
    border: 1px solid rgba(191, 157, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 157, 97, 0.3);
}

.footer-social .getty-badge {
    background: rgba(191, 157, 97, 0.2);
    border: 2px solid var(--gold-primary);
}

.footer-social .getty-badge:hover {
    background: var(--gold-primary);
    border-color: var(--gold-light);
    animation: cameraPulse 0.5s ease;
}

@keyframes cameraPulse {
    0%, 100% { transform: translateY(-5px) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
}

.footer-tagline {
    margin-top: 1rem;
    font-family: var(--font-tertiary);
    font-style: italic;
    color: var(--gold-primary) !important;
    font-size: 1rem !important;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-credentials {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .experience-timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        order: 2;
        margin-left: 100px !important;
        margin-right: 0 !important;
    }
    
    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        border-top: 1px solid rgba(191, 157, 97, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-logo-image {
        width: 30px;
        height: 30px;
    }
    
    .nav-brand a {
        gap: 0.5rem;
    }
    
    body::before {
        width: 400px;
        height: 400px;
        opacity: 0.06;
    }
    
    .hero-credentials {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-urgency {
        padding: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .package-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-option {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .package-crown,
    .package-icon {
        margin: 0 auto 1rem;
    }
    
    .event-access-grid {
        grid-template-columns: 1fr;
    }
    
    .event-access-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-access-title {
        font-size: 1.5rem;
    }
    
    .event-access-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-highlight {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-subtitle {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }
    
    .why-choose-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1.1rem;
    }
    
    .guarantee-box-featured {
        padding: 1.5rem 1rem;
    }
    
    .guarantee-box-featured p {
        font-size: 1.1rem;
    }
    
    /* Mobile Typography Improvements */
    .hero-tagline {
        margin: 1.5rem 0 !important;
        gap: 1rem !important;
    }
    
    .hero-name {
        margin: 2rem 0 !important;
    }
    
    .hero-name h1 {
        font-size: 2.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        padding: 0 0.5rem;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-highlight {
        font-size: 0.95rem !important;
        margin-top: 0.5rem !important;
    }
    
    .hero-credentials {
        margin: 1.5rem 0 !important;
    }
    
    .credential-badge {
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Mobile Section Spacing */
    .about-content {
        gap: 2rem;
    }
    
    .about-credentials-section {
        padding: 0 0.5rem;
    }
    
    .about-credentials {
        gap: 1.5rem;
    }
    
    /* Mobile Package Cards */
    .package-option h3 {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
    }
    
    /* Mobile Event Access */
    .event-access-section {
        padding: 2rem 1rem;
    }
    
    .event-item {
        font-size: 0.95rem;
    }
    
    /* Mobile Footer */
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Mobile Why Choose Section */
    .why-item h3 {
        font-size: 1.2rem;
    }
    
    .why-item p {
        font-size: 0.95rem;
    }
    
    .timeline-content {
        margin-left: 80px !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .logo-enfinity {
        font-size: 2.5rem;
    }
    
    .brand-enfinity {
        font-size: 1.3rem;
    }
    
    .service-card,
    .credential-card,
    .timeline-content,
    .contact-form {
        padding: 1.25rem;
    }
    
    /* Tighter spacing for small mobile */
    section {
        padding: 2.5rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .package-comparison {
        gap: 1.5rem !important;
    }
    
    .package-option {
        padding: 1.5rem 1rem !important;
    }
    
    .why-choose-section {
        padding: 1.5rem 0.75rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .why-choose-grid {
        gap: 1.25rem !important;
    }
    
    .about-content {
        gap: 1.5rem !important;
    }
    
    .services-grid {
        gap: 1.5rem !important;
    }
    
    .hero-credentials {
        gap: 0.5rem !important;
    }
    
    .hero-cta {
        gap: 0.5rem !important;
    }
    
    .event-access-section {
        padding: 1.5rem 0.75rem !important;
    }
    
    .testimonial-highlight {
        padding: 1.25rem 0.75rem !important;
    }
    
    .guarantee-box-featured {
        padding: 1.25rem 0.75rem !important;
    }
}
