:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #AA8C2C;
    --bg-color: #0a0a0a;
    /* Almost Black */
    --bg-secondary: #111111;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */
.btn-cta,
.btn-submit,
.btn-nav {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--black);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-cta:hover,
.btn-submit:hover,
.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-cta:active,
.btn-submit:active,
.btn-nav:active {
    transform: translateY(-1px);
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-symbol {
    max-width: 300px;
    opacity: 0.8;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: var(--bg-secondary);
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    width: 300px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(145deg, var(--bg-secondary), #1a1a1a);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--black);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.plan-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: #555;
}

.btn-plan {
    display: block;
    padding: 12px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-plan:hover {
    background-color: var(--primary-color);
    color: var(--black);
}

.btn-featured {
    background-color: var(--primary-color);
    color: var(--black);
}

.btn-featured:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Results Section (Carousel) */
.results {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.portfolio-card {
    background-color: var(--bg-color);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    margin: 0 15px;
    flex-shrink: 0;
    transition: 0.3s;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.result-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-card:hover .result-image img {
    transform: scale(1.1);
}

.result-info {
    padding: 20px;
    text-align: left;
}

.result-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1470&auto=format&fit=crop') center/cover;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-text {
    max-width: 700px;
    margin-bottom: 50px;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transform: scale(1.01);
    transition: 0.3s;
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(200%);
    transition: 0.3s;
}

.footer-logo img:hover {
    filter: none;
    transform: scale(1.1);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 15px;
    transition: 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Right Effect */
.animate-on-scroll.slide-right {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-right.visible {
    transform: translateX(0);
}

/* Slide Left Effect */
.animate-on-scroll.slide-left {
    transform: translateX(50px);
}

.animate-on-scroll.slide-left.visible {
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px;
        transform: translateY(-150%);
        transition: 0.5s;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-list li {
        justify-content: center;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}