/* CSS Custom Properties for Consistent Spacing */
:root {
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --section-padding-small: 60px;
    --container-padding: 20px;
    --element-spacing-large: 60px;
    --element-spacing-medium: 40px;
    --element-spacing-small: 20px;
    --text-spacing: 1.5rem;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #0A0A0A;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

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

.banner-link {
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-link:hover {
    color: #000;
}

.consultation-text {
    transition: all 0.3s ease;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.banner-link:hover .consultation-text {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 38px; /* Account for top banner */
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #D4AF37;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
}

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

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateX(5px);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(10px);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        margin: 15px 0;
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        background: rgba(212, 175, 55, 0.1);
        border: none;
        border-radius: 10px;
        margin-top: 0;
        min-width: auto;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        margin-top: 10px;
    }
    
    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-item {
        padding: 10px 15px;
        font-size: 1rem;
        text-align: center;
    }
    
    .dropdown-item:hover {
        transform: none;
        background: rgba(212, 175, 55, 0.2);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    overflow: hidden;
    padding: 108px 20px 20px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(212, 175, 55, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1.5s; }
.floating-icon:nth-child(3) { animation-delay: 3s; }
.floating-icon:nth-child(4) { animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.title-highlight {
    color: #D4AF37;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { 
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        opacity: 0.7;
    }
    100% { 
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.9);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #D4AF37;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #0A0A0A;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    font-size: 1.35rem;
    padding: 1.1em 3.2em;
    border-radius: 2em;
    min-width: 260px;
    min-height: 56px;
    box-shadow: 0 6px 32px #d4af3733, 0 2px 16px #0004;
}

.cta-button.secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.feature-item i {
    color: #D4AF37;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-text {
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--element-spacing-medium);
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

/* Statistics Section */
.stats-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--element-spacing-medium);
    margin-top: var(--element-spacing-large);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.stat-card:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 10px;
    display: block;
}

.stat-card .stat-label {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--element-spacing-large);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: var(--element-spacing-small);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 20px;
}

.portfolio-info h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #ccc;
    margin-bottom: 15px;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.portfolio-stats span {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.portfolio-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge:hover::before {
    opacity: 1;
}

.badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: grayscale(0) sepia(1) hue-rotate(35deg) saturate(2);
}

.badge h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

.badge p {
    opacity: 0.8;
    font-weight: 300;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--element-spacing-medium);
    margin-bottom: var(--element-spacing-medium);
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card.featured {
    border: 2px solid #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
    transform: scale(1.02);
}

.service-card.premium {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.service-features li i {
    color: #D4AF37;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.service-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-style: italic;
}

.service-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #0A0A0A;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-btn::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: left 0.5s;
}

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

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    height: 550px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(212, 175, 55, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.quote-decoration {
    position: relative;
    display: flex;
    align-items: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    z-index: 2;
    position: relative;
}

.quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.rating-text {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-content {
    padding: 30px 40px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-metrics {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.metric {
    text-align: center;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex: 1;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-footer {
    padding: 25px 40px 35px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.author-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.avatar-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #FFD700, #D4AF37);
    background-size: 200% 200%;
    animation: rotate-ring 4s linear infinite;
    z-index: -1;
}

@keyframes rotate-ring {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.author-info {
    flex: 1;
}

.author-name {
    color: #D4AF37;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 600;
}

.author-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.company-badge i {
    font-size: 0.7rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: var(--element-spacing-large);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--element-spacing-medium);
    margin-top: var(--element-spacing-large);
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #D4AF37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.member-info h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.member-info span {
    color: #ccc;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.member-skills span {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 60px;
}

.toggle-label {
    color: #ccc;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.3);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: #D4AF37;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: #D4AF37;
    color: #000;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--element-spacing-medium);
    margin-top: var(--element-spacing-large);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-header h3 {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price-display {
    margin: 20px 0;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.price span {
    font-size: 1.2rem;
    color: #ccc;
}

.monthly-price {
    display: none;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #D4AF37;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.featured-btn {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.premium-btn {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.premium-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* FAQ Section */
/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.faq-wrapper {
    max-width: 800px;
    margin: var(--element-spacing-large) auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: inherit;
}

.faq-icon {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
}

.faq-content {
    padding: 0 30px 25px;
}

.faq-content p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    margin-top: var(--element-spacing-large);
    margin-left: auto;
    margin-right: auto;
    padding-top: var(--element-spacing-small);
    max-width: 1200px;
    justify-content: center;
}

/* Specific layout for 4 steps (service pages) */
.steps-container.four-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.step {
    text-align: center;
    padding: 50px 20px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    height: 380px;
    min-width: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    border: 4px solid #0a0a0a;
    z-index: 20;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 1.8rem;
    color: #D4AF37;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.step:hover .step-icon {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
}

.step-connector {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.step-connector::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    border-radius: 2px;
    animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #D4AF37;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.5));
}

.step h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    z-index: 5;
    text-align: center !important;
    width: 100%;
    max-width: 180px;
}

.step p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.85rem;
    position: relative;
    z-index: 5;
    text-align: center !important;
    width: 100%;
    max-width: 220px;
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .step {
        padding: 45px 30px 35px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        top: -18px;
    }
    
    .step-connector {
        width: 3px;
        height: 50px;
        background: linear-gradient(180deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
        justify-self: center;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    
    .step-connector::before {
        background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.6), transparent);
        animation: flow-vertical 3s ease-in-out infinite;
    }
    
    @keyframes flow-vertical {
        0%, 100% { transform: translateY(-100%); }
        50% { transform: translateY(100%); }
    }
    
    .step-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #D4AF37;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 80px 0;
    }
    
    .steps-container {
        margin-top: 60px;
        gap: 25px;
    }
    
    .step {
        padding: 40px 25px 30px;
        border-radius: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -15px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin: 15px auto 20px;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .step-connector {
        height: 40px;
    }
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #0A0A0A;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: #D4AF37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FFFFFF;
}

.booking-form {
    margin-top: 2rem;
}

.booking-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

.booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
    color: #0A0A0A;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section,
    .stats-section,
    .services-section,
    .testimonials-section,
    .how-it-works-section,
    .faq-section,
    .contact-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .hero-section {
        padding: 90px 15px 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: var(--element-spacing-medium);
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: var(--element-spacing-small);
    }
    
    .section-subtitle {
        margin-top: 15px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .hero-cta-group {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card:nth-child(4) {
        grid-column: span 2;
        grid-row: 3;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 38px; /* Keep banner space on mobile */
    }
    
    .hero-section {
        padding: 108px 20px 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2.5rem auto;
        max-width: 350px;
        justify-items: center;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 3rem auto 2.5rem;
        align-items: center;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        justify-content: center;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        justify-items: center;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        padding: 12px 20px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 25px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .scroll-indicator {
        bottom: 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .section-subtitle {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid .service-card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        margin: 0;
    }
    
    .steps-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
        margin: 0 auto;
        padding-top: 0;
    }
    
    .step {
        padding: 2rem 1.5rem;
        margin-top: 0;
        text-align: center;
    }
    
    .step-connector {
        display: none;
    }
    .testimonial-nav{
        margin-top: 7rem;
    }
    
    .faq-container {
        max-width: 100%;
        margin: var(--element-spacing-medium) auto 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .about-section,
    .stats-section,
    .services-section,
    .testimonials-section,
    .how-it-works-section,
    .faq-section,
    .contact-section {
        padding: var(--section-padding-small) 0;
    }
    
    .hero-section {
        padding: 90px 15px 30px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: var(--element-spacing-small);
        line-height: 1.3;
    }
    
    .section-header {
        margin-bottom: var(--element-spacing-small);
    }
    
    .logo {
        max-width: 80px;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 1.2rem;
        margin: 2rem auto;
        max-width: 320px;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        max-width: 250px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        gap: 1.2rem;
        margin: 2.5rem auto 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        justify-content: center;
    }
    
    .hero-features {
        margin-top: 2.5rem;
        gap: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 10px 16px;
        max-width: 250px;
    }
    
    .scroll-indicator {
        bottom: 40px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .pricing-toggle {
        gap: 15px;
    }
    
    /* Testimonials */
    .testimonials-slider {
        height: 500px;
        margin: 40px auto 0;
    }
    
    .testimonial-card {
        border-radius: 20px;
    }
    
    .testimonial-header {
        padding: 18px 20px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .quote-icon {
        font-size: 1.8rem;
    }
    
    .quote-bg {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-rating {
        padding: 6px 12px;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .testimonial-content {
        padding: 18px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        left: -12px;
        top: -6px;
    }
    
    .testimonial-metrics {
        gap: 12px;
        flex-direction: column;
    }
    
    .metric {
        padding: 8px 12px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .testimonial-footer {
        padding: 15px 20px 20px;
    }
    
    .author-section {
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .company-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Pages Styles */
.service-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    overflow: hidden;
    padding: 80px 20px 20px;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #D4AF37;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-features-grid .feature-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.service-features-grid .feature-item i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.service-details-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.service-details-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-details-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #0A0A0A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .service-details-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.embed-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 56px 0 64px 0;
    margin: 0 auto 0 auto;
}
.embed-form-wrapper iframe {
    max-width: 520px;
    width: 100%;
    min-height: 750px;
    height: 750px;
    border-radius: 16px;
    border: 1.5px solid #D4AF37;
    box-shadow: 0 0 24px 0 #D4AF3733, 0 4px 32px rgba(0,0,0,0.28);
    background: transparent;
    overflow: hidden;
}

.cta-button.gold {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
    color: #18191c;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.85em 2.2em;
    font-size: 1.08rem;
    margin-left: 1em;
    box-shadow: 0 2px 16px #d4af3722;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
}
.cta-button.gold:hover, .cta-button.gold:focus {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    box-shadow: 0 4px 24px #d4af3744;
}

.floating-cta-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1000;
    padding: 1.2em 2.8em;
    font-size: 1.18rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px #d4af3744, 0 2px 16px #0006;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 0.7em;
    outline: none;
}
.floating-cta-btn:hover {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    color: #000;
    box-shadow: 0 12px 36px #d4af3766, 0 4px 24px #0008;
    transform: translateY(-2px) scale(1.04);
}
.floating-cta-btn:focus {
    outline: none;
}

/* Floating Marketing Badge */
.floating-marketing-badge {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1877F2;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    transition: all 0.3s ease;
}

.floating-marketing-badge:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.floating-marketing-badge i {
    font-size: 16px;
}
@media (max-width: 600px) {
    .floating-cta-btn {
        right: 12px;
        bottom: 12px;
        padding: 1em 1.2em;
        font-size: 1rem;
    }
}

.nav-instagram-icon {
    display: flex;
    align-items: center;
    margin-left: 1.6em;
    margin-right: 0.2em;
    transition: filter 0.18s, transform 0.18s;
    filter: none;
}
.nav-instagram-icon svg {
    display: block;
    background: transparent;
    width: 30px;
    height: 30px;
}
.nav-instagram-icon:hover svg path,
.nav-instagram-icon:hover svg circle {
    stroke: #D4AF37;
}
.nav-instagram-icon:hover {
    filter: drop-shadow(0 2px 8px #d4af3722) brightness(1.15);
    transform: scale(1.12);
}

.cta-button.gold, .floating-cta-btn {
    font-weight: 700;
}
/* Remove font-weight from hover/focus if present */

/* Revert global .cta-button.primary size changes */
.cta-button.primary {
    font-size: 1.08rem;
    padding: 0.85em 2.2em;
    border-radius: 8px;
    min-width: unset;
    min-height: unset;
    box-shadow: 0 2px 16px #d4af3722;
}

/* Only make product page CTA buttons larger */
.service-cta-section .cta-button.primary {
    font-size: 1.35rem;
    padding: 1.1em 3.2em;
    border-radius: 2em;
    min-width: 260px;
    min-height: 56px;
    box-shadow: 0 6px 32px #d4af3733, 0 2px 16px #0004;
}

.hero-cta-group .cta-button.primary {
    font-size: 1.08rem;
    padding: 0.85em 2.2em;
    border-radius: 8px;
    min-width: unset;
    min-height: unset;
    box-shadow: 0 2px 16px #d4af3722;
}

.service-cta-section .cta-button.primary {
    font-size: 1.35rem;
    padding: 1.1em 3.2em;
    border-radius: 2em;
    min-width: 260px;
    min-height: 56px;
    box-shadow: 0 6px 32px #d4af3733, 0 2px 16px #0004;
}

.hero-cta-group .cta-button.primary {
    font-size: 1.08rem;
    padding: 0.85em 2.2em;
    border-radius: 2em;
    min-width: unset;
    min-height: unset;
    box-shadow: 0 2px 16px #d4af3722;
}

.hero-cta-group .cta-button.primary {
    font-size: 1.08rem;
    padding: 0.85em 2.2em;
    border-radius: 2em;
    min-width: unset;
    min-height: unset;
    box-shadow: 0 2px 16px #d4af3722;
    border: none;
}