/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #B8860B;
    --green: #2E7D32;
    --green-light: #4CAF50;
    --red: #C62828;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-300: #d4d4d4;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gold {
    color: var(--gold);
}

/* Navigation */
.navbar {
    position: relative;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    text-align: left;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 700px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--black);
}

/* Gallery Section */
.gallery {
    padding: 40px 0 80px;
}

.gallery-grid {
    display: flex;
    gap: 16px;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-300);
}

.feature-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: 16px;
    background: var(--white);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 16px;
}

.comparison-title {
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 24px;
}


.icon-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.icon-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-check img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--gray-100);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.2));
    border-radius: 12px;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

/* Package Section */
.package {
    padding: 100px 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.package-item {
    padding: 32px;
    border-radius: 16px;
    background: var(--white);
    transition: transform 0.2s ease;
}

.package-item:hover {
    transform: translateY(-4px);
}

.package-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.2));
    border-radius: 12px;
    color: var(--gold);
}

.package-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.15);
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--gray-100);
}

.reviews-grid {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.review-author {
    font-weight: 700;
    margin-bottom: 8px;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 18px;
}

.review-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-300);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    color: var(--gray-500);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 13px;
    }
}












