:root {
    --brand: #ff6a00;
    --brand-dark: #e55f00;
    --accent: #25D366;
    --ink: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --ring: rgba(255,106,0,0.25);
    --radius: 16px;
    --shadow: 0 8px 25px rgba(15,23,42,0.08);
    --shadow-lg: 0 20px 40px rgba(15,23,42,0.12);
}
.about-hero .container {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards; /* 1s = speed */
}

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

* { box-sizing: border-box; }
html, body { margin:0; padding:0; scroll-behavior: smooth; }
body { font-family: Inter, system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: none; }

/* Header Styles */
header {  top: 0; z-index: 100; backdrop-filter: saturate(180%) blur(12px); background: rgba(255,255,255,0.95); border-bottom: 1px solid #e2e8f0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav { display:flex; align-items:center; justify-content:space-between; height:70px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:700; color: var(--ink); font-size: 18px; }
.brand-logo { width:40px; height:40px; border-radius:12px; overflow: hidden; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow); }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-links { display:flex; gap:24px; align-items:center; }
.nav-links a { color: var(--ink); font-weight:500; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand); }
.nav .btn { background: var(--brand); color:#fff; padding:12px 20px; border-radius: 999px; box-shadow: var(--shadow); font-weight:600; transition: all 0.2s; }
.nav .btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Mobile Menu */
.mobile-menu { display: none; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* Hero Section */
.hero { padding: 80px 0; background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.h1 { font-family: "Playfair Display", serif; font-weight:700; font-size: clamp(32px, 5vw, 48px); line-height:1.1; color: var(--ink); margin:0 0 16px; }
.hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: var(--muted); margin-bottom: 24px; }
.hero-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 24px 0 32px; }
.feature-check { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.feature-check::before { content: '✓'; background: var(--brand); color: white; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--brand); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: white; border: 2px solid var(--brand); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: white; }

/* Hero Form */
.hero-form { background: #f8fafc54; padding: 24px; border-radius: 16px; box-shadow: 0 8px 25px rgba(15,23,42,0.08); }
.hero-form h3 { margin-bottom: 16px; color: white; 
    text-align: center;
    font-size: x-large;
}
.hero-form .form-group { margin-bottom: 16px; }
.hero-form .form-input { width: 100%; padding: 10px 14px; border: 2px solid #e2e8f0; border-radius: 8px; }
.hero-form button { width: 100%; background: #ff6a00; color: #fff; border: none; padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer; }
.hero-form button:hover { background: #e55f00; }

/* Stats Badge */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: white; border: 1px solid #e2e8f0; border-radius: 999px; font-weight: 600; margin-bottom: 20px; box-shadow: var(--shadow); }
.hero-image { text-align: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 20px; box-shadow: var(--shadow-lg); }

/* Section Styles */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 40px); color: var(--ink); margin: 0 0 12px; }
.section-subtitle { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* Package Grid */
.packages-section { background: var(--bg-soft); }
.packages-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 16px; border: 2px solid #e2e8f0; background: white; border-radius: 999px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--brand); background: var(--brand); color: white; }

.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.package-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-image { width: 100%; height: 220px; object-fit: cover; }
.package-content { padding: 24px; }
.package-title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.package-duration { color: var(--brand); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.package-description { color: var(--muted); margin-bottom: 16px; }
.package-highlights { margin-bottom: 20px; }
.package-highlights h4 { font-size: 14px; font-weight: 600; margin: 0 0 8px; color: var(--ink); }
.highlights-list { display: grid; grid-template-columns: 1fr; gap: 4px; font-size: 14px; }
.highlight-item { display: flex; align-items: center; gap: 6px; color: var(--muted); }
.highlight-item::before { content: '•'; color: var(--brand); font-weight: bold; }
.package-price { display: flex; justify-content: space-between; align-items: center; }
.price-text { font-size: 18px; font-weight: 700; color: var(--ink); }
.package-btn { padding: 10px 20px; font-size: 14px; }

/* Why Choose Us Section */
.why-section { background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { margin-bottom: 20px; }
.why-features { display: grid; gap: 20px; }
.why-feature { display: flex; gap: 16px; }
.feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--brand), #ffb700); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; flex-shrink: 0; }
.feature-text h3 { margin: 0 0 4px; font-size: 18px; font-weight: 600; color: var(--ink); }
.feature-text p { margin: 0; color: var(--muted); }

/* Testimonials */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-rating { color: #fbbf24; margin-bottom: 16px; font-size: 18px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--brand), #ffb700); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.author-info h4 { margin: 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.author-info p { margin: 0; font-size: 14px; color: var(--muted); }

/* Contact Section */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { margin-bottom: 20px; color: var(--ink); }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-icon { width: 40px; height: 40px; background: var(--bg-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); }
.contact-form { background: var(--bg-soft); padding: 30px; border-radius: var(--radius); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--ink); }
.form-input { width: 100%; padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 8px; font-family: inherit; transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-textarea { min-height: 100px; resize: vertical; }

/* Footer */
footer { background: var(--ink); color: #e2e8f0; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-section h3 { margin-bottom: 20px; color: white; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #e2e8f0; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { padding-top: 30px; border-top: 1px solid #334155; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-link { width: 40px; height: 40px; background: #334155; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #e2e8f0; text-decoration: none; transition: background 0.2s; }
.social-link:hover { background: var(--brand); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; box-shadow: var(--shadow-lg); z-index: 1000; transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.1); background: #20b955; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; border-top: 1px solid #e2e8f0; }
    .nav-links.active { display: flex; }
    .hero-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-cta { justify-content: center; }
    .packages-filter { justify-content: center; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
}

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

.fade-in-up { animation: fadeInUp 0.6s ease-out; }