* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #1a1a2e;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #e65c00;
    font-size: 1.5rem;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e65c00;
}

.mobile-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero-content .highlight {
    color: #e65c00;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image {
    flex: 1;
}

.image-placeholder {
    background: linear-gradient(135deg, #e65c00, #ff8c42);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.image-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.image-placeholder span {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #e65c00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,92,0,0.3);
}

.btn-book {
    background: #e65c00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
}

.btn-book:hover {
    background: #cc5200;
    transform: translateY(-2px);
}

.services {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    color: #e65c00;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin: 10px 0;
}

.section-title p {
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* FIXED: Service Card Image Styles */
.service-image {
    height: 180px;
    background: linear-gradient(135deg, #e65c00, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-image i {
    font-size: 3.5rem;
    color: white;
}

.service-image span {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.service-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e65c00;
    margin-bottom: 15px;
}

.features {
    background: #1a1a2e;
    padding: 60px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.feature-box i {
    font-size: 2.5rem;
    color: #e65c00;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    color: #ccc;
}

footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e65c00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.products-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f7fa;
    border-radius: 10px;
}

.info-item i {
    font-size: 2rem;
    color: #e65c00;
}

.info-item h3 {
    margin-bottom: 5px;
    color: #1a1a2e;
}

.info-item .small {
    font-size: 0.85rem;
    color: #666;
}

.contact-form {
    background: #f5f7fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.policy-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.policy-card h2 {
    color: #e65c00;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-card h2 i {
    margin-right: 10px;
}

.policy-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.payment-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.order-summary,
.payment-methods {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.order-details {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #e65c00;
}

.payment-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #e65c00;
}

.payment-option input {
    margin-right: 10px;
}

.payment-option label {
    cursor: pointer;
    display: inline-block;
    width: calc(100% - 30px);
}

.payment-option i {
    margin-right: 10px;
    color: #e65c00;
}

.badge {
    background: #e65c00;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 10px;
}

.qr-section,
.bank-details {
    margin: 20px 0;
    padding: 20px;
    background: #f5f7fa;
    border-radius: 10px;
    text-align: center;
}

.qr-placeholder {
    padding: 20px;
}

.qr-placeholder i {
    font-size: 5rem;
    color: #e65c00;
    margin-bottom: 15px;
}

.bank-info {
    text-align: left;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.screenshot-upload {
    margin: 20px 0;
}

.upload-area {
    border: 2px dashed #ddd;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    border-color: #e65c00;
    background: #fef5e8;
}

.upload-area i {
    font-size: 3rem;
    color: #e65c00;
    margin-bottom: 10px;
}

#previewArea {
    margin-top: 15px;
    text-align: center;
}

#previewImage {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn-remove {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-complete {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #28a745;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

.toast.error {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-image i {
        font-size: 2.5rem;
    }
    
    .service-image span {
        font-size: 1rem;
    }
}