/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #361F27;
    background-color: #EAF2EF;
}

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

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(82, 25, 69, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #521945;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #361F27;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #912F56;
}

.nav-cta {
    color: #912F56 !important;
}

.nav-cta:hover {
    color: #521945 !important;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(82, 25, 69, 0.8) 0%, rgba(145, 47, 86, 0.8) 100%),
        url('img/hero.jpeg') center center / cover no-repeat;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #EAF2EF;
    color: #521945;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #EAF2EF;
}

.cta-button:hover {
    background-color: transparent;
    color: #EAF2EF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #521945;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background-color: #EAF2EF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(82, 25, 69, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 1.3rem;
    color: #521945;
    margin-bottom: 12px;
}

.benefit p {
    font-size: 0.95rem;
    color: #361F27;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: #EAF2EF;
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #521945;
    margin-bottom: 60px;
}

.packages-table {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(82, 25, 69, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #521945 0%, #912F56 100%);
    color: white;
}

.header-cell {
    padding: 25px 20px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.package-specs {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #EAF2EF;
}

.table-row:last-child {
    border-bottom: none;
}

.segment-cell {
    background-color: #EAF2EF;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #fff;
}

.segment-cell h4 {
    color: #521945;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.package-cell {
    padding: 25px 20px;
    text-align: center;
}

.package-cell ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-cell li {
    font-size: 0.9rem;
    color: #361F27;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.package-cell li:before {
    content: "•";
    color: #912F56;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-cell li:last-child {
    margin-bottom: 0;
}

.price-row {
    background-color: #f8f9fa;
}

.price-row .segment-cell {
    background-color: #e9ecef;
}

.package-button {
    display: inline-block;
    background-color: #912F56;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: #521945;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(82, 25, 69, 0.3);
}

/* Mobile Package Layout */
.packages-mobile {
    display: none;
}

.mobile-package {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(82, 25, 69, 0.08);
    margin-bottom: 30px;
}

.mobile-package-header {
    background: linear-gradient(135deg, #521945 0%, #912F56 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.mobile-package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.mobile-package-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.mobile-segment {
    padding: 20px;
    border-bottom: 1px solid #EAF2EF;
}

.mobile-segment:last-of-type {
    border-bottom: none;
}

.mobile-segment h4 {
    color: #521945;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mobile-segment ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-segment li {
    font-size: 0.9rem;
    color: #361F27;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.mobile-segment li:before {
    content: "•";
    color: #912F56;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.mobile-segment li:last-child {
    margin-bottom: 0;
}

.mobile-package-footer {
    background-color: #f8f9fa;
    padding: 25px 20px;
    text-align: center;
}

.mobile-package-footer h4 {
    color: #521945;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #521945;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
    position: relative;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #912F56;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step h3 {
    font-size: 1.4rem;
    color: #521945;
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: #361F27;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #912F56;
    margin: 0 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #EAF2EF;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #521945;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(82, 25, 69, 0.08);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(82, 25, 69, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #521945;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #912F56;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #361F27;
    line-height: 1.7;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid #EAF2EF;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #521945 0%, #912F56 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 20px 30px;
    border: 2px solid #912F56;
    border-radius: 12px;
    background-color: rgba(145, 47, 86, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
}

.contact-link:hover {
    background-color: #912F56;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(145, 47, 86, 0.3);
}

.contact-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #0D090A;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .why-choose-us h2,
    .packages h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .packages-table {
        display: none;
    }
    
    .packages-mobile {
        display: block;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px;
    }
    
    .package {
        padding: 30px 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-link {
        min-width: 200px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 12px 15px;
    }
    
    .logo a {
        font-size: 1.3rem;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .why-choose-us,
    .packages,
    .contact {
        padding: 60px 0;
    }
    
    .benefit,
    .use-case {
        padding: 20px 15px;
    }
    
    .package h3 {
        font-size: 1.6rem;
    }
}