* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --dark-red: #B22222;
    --light-red: #FF6B6B;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    flex-shrink: 0;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.booking-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.booking-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    .navbar .container {
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--gray);
    }

    .nav-links a:hover {
        background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
        color: var(--primary-red);
    }

    .booking-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide.fade {
    animation: fade 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Overlay Content */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* Slider Navigation */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    padding: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 28px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.prev:hover, .next:hover {
    background: var(--primary-red);
    border-color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.dot {
    cursor: pointer;
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 0 12px rgba(220, 20, 60, 0.8);
}

.dot:hover {
    background-color: var(--primary-red);
    border-color: var(--white);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-red);
    opacity: 0.1;
    z-index: 0;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.35);
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.stat-icon-svg {
    width: 100%;
    height: 100%;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    pointer-events: none;
    border-radius: 25px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
}

.features h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-svg {
    width: 100%;
    height: 100%;
    color: var(--primary-red);
    filter: drop-shadow(0 4px 12px rgba(220, 20, 60, 0.15));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-svg {
    filter: drop-shadow(0 6px 20px rgba(220, 20, 60, 0.3));
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
}

.pricing-intro {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    line-height: 1.9;
    color: var(--gray);
}

.pricing-intro p {
    margin: 0;
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.highlight {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
}

.sale-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.price-header h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    font-weight: 700;
}

.badge {
    background: #f0f0f0;
    color: var(--gray);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.featured {
    background: var(--primary-red);
    color: var(--white);
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.price-note {
    font-size: 0.95rem;
    color: var(--gray);
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    color: var(--gray);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-list i {
    color: var(--primary-red);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.price-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.price-card .btn-primary {
    width: 100%;
}

/* Pricing Table */
.pricing-table {
    margin-bottom: 3rem;
}

.pricing-table h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.price-table-wrapper {
    margin-bottom: 2.5rem;
}

.table-title {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
}

.table-title .date-range {
    color: var(--primary-red);
    font-weight: 700;
}

.table-title.sale-promotion {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
}

.table-title.sale-promotion span {
    color: inherit;
}

.pricing-table-main {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table-main thead {
    background: #f5f5f5;
}

.pricing-table-main th {
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    color: var(--dark-gray);
    border-right: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.pricing-table-main th:last-child {
    border-right: none;
}

.pricing-table-main thead tr:first-child th {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border-right-color: rgba(255, 255, 255, 0.2);
}

.pricing-table-main .sub-header th {
    background: #f5f5f5;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    border-bottom: 2px solid #e0e0e0;
}

.pricing-table-main td {
    padding: 1.2rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.pricing-table-main td:first-child {
    text-align: left;
    color: var(--dark-gray);
    font-weight: 500;
}

.pricing-table-main td:last-child {
    border-right: none;
}

.pricing-table-main tbody tr:hover {
    background: rgba(220, 20, 60, 0.03);
}

.pricing-table-main tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table-main td.discount {
    color: var(--primary-red);
    font-weight: 700;
}

/* Pricing Info */
.pricing-info {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
    padding: 3rem;
    border-radius: 20px;
}

.pricing-info h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.info-box h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    color: var(--gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.price-card .btn-primary {
    width: 100%;
}

/* Safety Section */
.safety {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.safety h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.safety-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.safety-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.safety-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--light-gray);
}

.reviews h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-align: center;
}

.review-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.review-author {
    color: var(--primary-red);
    font-weight: 600;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
    margin: 0;
}

.info-item a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.15);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 107, 107, 0.08) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.12) 0%, rgba(255, 107, 107, 0.12) 100%);
}

.faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    border-radius: 12px;
    flex-shrink: 0;
}

.faq-svg {
    width: 28px;
    height: 28px;
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 700;
    flex-grow: 1;
    text-align: left;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-item.active .faq-toggle {
    background: var(--primary-red);
}

.faq-toggle::before {
    content: '+';
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle::before {
    content: '×';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.faq-answer li {
    color: var(--gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon {
    width: 22px;
    height: 22px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-red);
    transform: translateY(-3px);
}

.social-links a:hover .social-icon {
    transform: scale(1.15);
}

.newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--dark-red);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #999;
}

.company-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #555;
}

.company-main h4 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.company-main p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-main a {
    color: var(--light-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-main a:hover {
    color: var(--white);
}

.company-links h4 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.company-links ul {
    list-style: none;
    padding: 0;
}

.company-links li {
    margin: 0.6rem 0;
}

.company-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.company-links a:hover {
    color: var(--light-red);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Floating Contact Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.floating-btn.phone {
    background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.floating-btn.whatsapp:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.floating-btn.phone:hover {
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
}

.floating-icon {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .prev, .next {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        font-size: 22px;
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .dots-container {
        bottom: 30px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-header h2 {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-description {
        font-size: 1.05rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat {
        padding: 1.5rem 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .features h2,
    .pricing h2,
    .reviews h2,
    .contact h2,
    .about h2,
    .safety h2 {
        font-size: 2rem;
    }

    .feature-card,
    .price-card,
    .review-card {
        padding: 1.5rem;
    }

    .info-item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        font-size: 18px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dots-container {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .about-header h2 {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.95rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .stat {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .features h2,
    .pricing h2,
    .reviews h2,
    .contact h2,
    .about h2,
    .safety h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-main p {
        font-size: 0.9rem;
    }

    .company-links a {
        font-size: 0.9rem;
    }

    .floating-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-icon {
        width: 26px;
        height: 26px;
    }
}
