/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: linear-gradient(135deg, #1a0f2e 0%, #2b1b3d 100%); color: #f1f1f1; line-height: 1.7; overflow-x: hidden; }

/* Header & Nav */
header { background: linear-gradient(90deg, #4b134f, #c94b4b); padding: 15px 50px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.5); border-bottom: 3px solid #f9ca24; }
.logo h1 { font-size: 32px; font-weight: 700; color: #fff; text-transform: uppercase; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); letter-spacing: 2px; }
.logo span { color: #f9ca24; }
nav ul { list-style: none; display: flex; gap: 25px; }
nav ul li a { color: #fff; text-decoration: none; font-weight: 500; font-size: 16px; padding: 8px 15px; border-radius: 5px; transition: all 0.3s ease; text-transform: uppercase; }
nav ul li a:hover, nav ul li a.active { background: #f9ca24; color: #1a0f2e; box-shadow: 0 0 10px #f9ca24; }

/* Marquee */
.marquee-container { background: #222; color: #00ff00; padding: 10px; font-size: 16px; font-weight: 600; border-bottom: 1px solid #444; }

/* Shared Section Title */
.section-title { text-align: center; font-size: 40px; color: #fff; margin: 0 auto 50px auto; text-transform: uppercase; letter-spacing: 1px; position: relative; display: block; width: 100%; padding-top: 50px; }
.section-title::after { content: ""; display: block; width: 120px; height: 4px; background: #f9ca24; margin: 15px auto 0; border-radius: 2px; }
.title-red::after { background: #e74c3c; }

/* Hero Section */
.hero { position: relative; padding: 140px 20px; text-align: center; background: linear-gradient(to bottom, rgba(75, 19, 79, 0.85), rgba(43, 27, 61, 0.9)), url('images/pic1.jpg') no-repeat center center/cover; border-bottom: 5px solid #f9ca24; }
.hero h2 { font-size: 55px; color: #fff; text-shadow: 3px 3px 6px rgba(0,0,0,0.8); margin-bottom: 20px; }
.hero h2 span { color: #f9ca24; }
.hero p { font-size: 22px; color: #e0e0e0; max-width: 800px; margin: 0 auto 30px auto; text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }

/* Form */
.booking-section { background: linear-gradient(135deg, #2c3e50, #3498db); padding: 50px 30px; margin: -60px auto 50px auto; max-width: 900px; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.6); position: relative; z-index: 10; border: 2px solid #f9ca24; }
.booking-section h3 { text-align: center; font-size: 32px; color: #fff; margin-bottom: 25px; text-shadow: 1px 1px 2px #000; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #f1f1f1; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: none; border-radius: 8px; background: rgba(255,255,255,0.9); color: #333; font-size: 16px; }
.form-group textarea { grid-column: span 2; height: 100px; resize: vertical; }
.btn-submit { grid-column: span 2; background: linear-gradient(90deg, #f12711, #f5af19); color: white; font-size: 20px; font-weight: bold; padding: 15px; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; }
.btn-submit:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(245, 175, 25, 0.6); }

/* Layouts */
.page-container { padding: 40px 20px 80px; max-width: 1200px; margin: 0 auto; }
.two-col { display: flex; align-items: center; gap: 50px; margin-bottom: 50px; }
.two-col img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 4px solid #f9ca24; }
.text-col h2 { font-size: 38px; color: #f9ca24; margin-bottom: 20px; }
.text-col p { font-size: 18px; color: #dcdde1; line-height: 1.8; margin-bottom: 15px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { border-radius: 12px; text-align: center; color: #fff; transition: transform 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.4); overflow: hidden; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
.service-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 3px solid rgba(255,255,255,0.2); }
.service-content { padding: 25px 20px; flex-grow: 1; }
.service-content i { font-size: 35px; margin-bottom: 15px; }
.service-content h4 { font-size: 24px; margin-bottom: 10px; font-weight: 600; }
.card-red .service-content { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.card-green .service-content { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.card-blue .service-content { background: linear-gradient(135deg, #3498db, #2980b9); }
.card-purple .service-content { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.card-orange .service-content { background: linear-gradient(135deg, #e67e22, #d35400); }
.card-teal .service-content { background: linear-gradient(135deg, #1abc9c, #16a085); }
.card-yellow .service-content { background: linear-gradient(135deg, #f1c40f, #f39c12); color: #333; }

/* Features & Cards */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.feature-box { background: #2b1b3d; padding: 25px; border-radius: 10px; border: 1px solid #4b134f; text-align: center; }
.feature-box i { color: #f9ca24; font-size: 35px; margin-bottom: 15px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 10px; border-left: 5px solid #f9ca24; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #2b1b3d; margin-bottom: 20px; padding: 25px; border-radius: 8px; border-left: 5px solid #e74c3c; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #2b1b3d; padding: 40px; border-radius: 15px; }
.map-container iframe { width: 100%; height: 100%; min-height: 350px; border-radius: 10px; border: 3px solid #4b134f; }

/* Footer */
footer { background: #11091f; padding: 60px 50px 20px; border-top: 5px solid #f9ca24; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #f9ca24; margin-bottom: 20px; text-transform: uppercase; }
.footer-col p, .footer-col ul li { color: #a4b0be; margin-bottom: 12px; list-style: none; }
.footer-col ul li a { color: #a4b0be; text-decoration: none; }
.footer-col ul li a:hover { color: #f9ca24; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; color: #7f8fa6; }

/* Float Buttons */
.floating-buttons { position: fixed; bottom: 30px; z-index: 9999; }
.float-right { right: 30px; } .float-left { left: 30px; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 30px; color: white; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.4); transition: 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.btn-whatsapp { background: #25D366; } .btn-call { background: #007bff; }

/* Tablet/Intermediate Mobile Overrides */
@media (max-width: 900px) {
    .two-col, .contact-grid { flex-direction: column; grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group textarea, .btn-submit { grid-column: span 1; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    header { flex-direction: column; gap: 15px; }
}