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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.navbar {
    padding: 0.3rem 0;
}

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

.nav-logo .logo {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}

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

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

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

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

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #e7b046, #c49a46);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    background: linear-gradient(45deg, #c49a46, #8a0509);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url('images/header-back.avif') center/cover no-repeat;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(229, 9, 20, 0.1) 0%, 
        rgba(229, 9, 20, 0.05) 25%, 
        transparent 50%, 
        rgba(229, 9, 20, 0.05) 75%, 
        rgba(229, 9, 20, 0.1) 100%);
    animation: liquidFlow 8s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% { transform: translateX(-50px) translateY(-30px) rotate(0deg); }
    25% { transform: translateX(30px) translateY(-50px) rotate(90deg); }
    50% { transform: translateX(50px) translateY(30px) rotate(180deg); }
    75% { transform: translateX(-30px) translateY(50px) rotate(270deg); }
}

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

.hero-text {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-title .highlight {
    color: #e7b046;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-cta {
    background: linear-gradient(45deg, #e7b046, #c49a46);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 9, 20, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e7b046;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.05), transparent);
    transition: left 0.5s;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #e7b046;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: #000;
}

.packages .section-title {
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    justify-items: center;
}

/* First row - 3 cards */
.package-card:nth-child(1),
.package-card:nth-child(2),
.package-card:nth-child(3) {
    grid-row: 1;
}

/* Second row - 2 cards with proper spacing */
.package-card:nth-child(4) {
    grid-row: 2;
    grid-column: 1;
    justify-self: center;
    margin-right: 0.625rem;
}

.package-card:nth-child(5) {
    grid-row: 2;
    grid-column: 3;
    justify-self: center;
    margin-left: 0.625rem;
}

.package-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 3px solid #e7b046;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 152, 0, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 152, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(255, 152, 0, 0.4);
}

/* Package Badges */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #e7b046, #c49a46);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(231, 176, 70, 0.3);
}

/* Package Type Specific Styling */
.package-card.basic {
    border-color: #e7b046;
}

.package-card.premium {
    border-color: #e7b046;
}

.package-card.advanced {
    border-color: #e7b046;
}

.package-card.professional {
    border-color: #e7b046;
}

.package-card.ultimate {
    border-color: #FF9800;
    background: linear-gradient(135deg, #2d1810 0%, #3d2520 100%);
    transform: scale(1.02);
}

.package-card.ultimate .package-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    animation: pulse 2s infinite;
}

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

.package-header h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #e7b046;
    font-weight: 600;
    margin-right: 5px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e7b046;
    text-shadow: 0 2px 10px rgba(231, 176, 70, 0.3);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    color: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 500;
    transition: color 0.3s ease;
}

.package-features li:hover {
    color: #e7b046;
}

.package-features i {
    color: #e7b046;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Add-ons Section */
.addons-section {
    background: rgba(231, 176, 70, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(231, 176, 70, 0.2);
}

.addons-section h4 {
    color: #e7b046;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(231, 176, 70, 0.2);
}

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

.addon-name {
    color: #e0e0e0;
    font-weight: 500;
}

.addon-price {
    color: #e7b046;
    font-weight: 700;
    font-size: 1.1rem;
}

.package-description {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.package-btn {
    background: linear-gradient(45deg, #e7b046, #c49a46);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.package-btn:hover::before {
    width: 300px;
    height: 300px;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

/* Exclusive Offer Section */
.exclusive-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #e7b046 0%, #c49a46 100%);
    text-align: center;
}

.offer-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.offer-btn {
    background: white;
    color: #e7b046;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Insights Section */
.insights {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

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

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

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

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

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 158, 11, 0.3);
    border-color: rgba(219, 139, 18, 0.5);
}

.insight-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 30px;
}

.insight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #e7b046 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insight-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.insight-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.insight-date,
.insight-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e7b046;
    font-size: 0.85rem;
    font-weight: 500;
}

.insight-date i,
.insight-category i {
    font-size: 0.8rem;
}

.insights-cta {
    text-align: center;
    padding: 40px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(10px);
}

.insights-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.insights-cta p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.insights-btn {
    background: linear-gradient(135deg, #e7b046 0%, #e7b046 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.insights-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.insights-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
}

/* Mobile Responsive for Insights */
@media (max-width: 768px) {
    .insights {
        padding: 60px 0;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .insight-image {
        height: 200px;
    }
    
    .insight-content {
        padding: 25px;
    }
    
    .insight-content h3 {
        font-size: 1.3rem;
    }
    
    .insight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .insights-cta {
        padding: 30px 20px;
    }
    
    .insights-cta h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    background: #e7b046;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.contact-form, .booking-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e7b046;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:not([value=""]):valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.8rem;
    color: #e7b046;
}

.submit-btn {
    background: linear-gradient(45deg, #e7b046, #c49a46);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #c49a46, #e7b046);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.3);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 100px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e7b046;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    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: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #e7b046;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: popupBounce 0.5s ease;
}

@keyframes popupBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.popup-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.popup-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 2rem;
}

.popup-content button {
    background: #e7b046;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e7b046;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #c49a46;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .packages-grid::after {
        display: none;
    }
    
    .package-card:nth-child(1),
    .package-card:nth-child(2),
    .package-card:nth-child(3),
    .package-card:nth-child(4),
    .package-card:nth-child(5) {
        grid-row: auto;
        grid-column: auto;
        justify-self: center;
        margin: 0;
    }
    
    .package-card {
        transform: none !important;
    }
    
    .package-card.ultimate {
        transform: none !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .offer-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .popup-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
}