/* Palette: Sky Blue, Deep Blue, Warm White */
:root {
    --primary: #4DA8DA;
    --primary-dark: #3b8bb5;
    --secondary: #003459;
    --bg: #F0F8FF;
    --white: #FFFFFF;
    --text: #333333;
    --light-blue: #e0f2fe;
    
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Header */
.header { background: var(--white); padding: 15px 0; border-bottom: 1px solid #e1e8ed; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--secondary); letter-spacing: 0.5px; }
.path-icon { margin: 0 5px; font-size: 1.6rem; }

.nav a { margin-left: 25px; font-weight: 600; color: var(--text); font-family: var(--font-head); font-size: 1rem; }
.nav a:hover, .nav a.active { color: var(--primary); }

.header-cta .btn-primary { padding: 10px 20px; font-size: 0.9rem; }

.mobile-toggle { display: none; background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 5px 12px; border-radius: 20px; cursor: pointer; font-weight: 700; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--white); z-index: 2000; padding: 50px; transition: 0.3s; box-shadow: -5px 0 30px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; margin-bottom: 30px; cursor: pointer; color: var(--text); }
.mobile-menu a { display: block; font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 20px; color: var(--secondary); font-weight: 700; }
.mobile-menu a:hover { color: var(--primary); }

@media (max-width: 900px) {
    .nav, .header-cta { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { padding: 80px 0; background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.pill { background: var(--light-blue); color: var(--secondary); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 20px; font-family: var(--font-head); }
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--secondary); font-weight: 800; }
.hero p { font-size: 1.2rem; color: var(--text); margin-bottom: 40px; opacity: 0.8; }

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: var(--white); padding: 12px 30px; border-radius: 30px; font-weight: 700; border: none; cursor: pointer; transition: 0.3s; font-family: var(--font-head); box-shadow: 0 5px 15px rgba(77, 168, 218, 0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--white); color: var(--secondary); padding: 12px 30px; border-radius: 30px; font-weight: 700; transition: 0.3s; border: 2px solid var(--light-blue); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.hero-img { position: relative; }
.hero-img img { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.float-box { position: absolute; bottom: 30px; left: -30px; background: var(--white); padding: 15px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; }
.emoji { font-size: 2rem; background: var(--light-blue); padding: 10px; border-radius: 50%; }
.float-box strong { display: block; color: var(--secondary); }
.float-box span { font-size: 0.8rem; color: #777; }

/* Services Preview */
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; }
.center { text-align: center; max-width: 600px; margin: 0 auto 50px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); padding: 30px; border-radius: 20px; text-align: center; transition: 0.3s; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--primary); }
.icon-circle { font-size: 2.5rem; background: var(--light-blue); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.service-card h3 { font-family: var(--font-head); color: var(--secondary); margin-bottom: 10px; }

/* Testimonial */
.testimonial-section { background: var(--secondary); padding: 80px 0; color: var(--white); margin-top: 50px; border-radius: 30px; margin-left: 20px; margin-right: 20px; }
.review-box { text-align: center; max-width: 700px; margin: 0 auto; }
.stars { margin-bottom: 20px; font-size: 1.5rem; }
.review-box p { font-size: 1.5rem; font-style: italic; font-family: var(--font-head); margin-bottom: 30px; line-height: 1.4; }
.author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.author img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary); object-fit: cover; }
.author span { font-weight: 700; color: var(--primary); }

/* Packages List */
.packages-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.package-item { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid #eee; display: flex; flex-direction: column; }
.package-item.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 1; }
.pkg-header { background: var(--light-blue); padding: 30px; text-align: center; }
.pkg-header h3 { font-family: var(--font-head); color: var(--secondary); margin-bottom: 10px; }
.pkg-header .price { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.pkg-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.pkg-body ul { list-style: none; margin: 20px 0; flex-grow: 1; }
.pkg-body li { margin-bottom: 10px; font-size: 0.95rem; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 10px 20px; border-radius: 30px; font-weight: 700; text-align: center; display: block; transition: 0.3s; }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Guides */
.guides-intro { text-align: center; margin-bottom: 50px; }
.guides-intro h1 { font-family: var(--font-head); font-size: 3rem; color: var(--secondary); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.guide-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.guide-card:hover { transform: translateY(-5px); }
.guide-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; }
.g-content { padding: 25px; }
.cat { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; display: block; }
.g-content h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
.read-link { color: var(--secondary); font-weight: 700; border-bottom: 2px solid var(--primary); padding-bottom: 2px; font-size: 0.9rem; }

/* Contact Form */
.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.c-left h2 { font-family: var(--font-head); color: var(--secondary); margin-bottom: 20px; }
.contact-details p { margin-bottom: 10px; font-weight: 600; }

.soft-form .form-grp { margin-bottom: 20px; }
.soft-form label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--secondary); font-size: 0.9rem; }
.soft-form input, .soft-form select, .soft-form textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.soft-form input:focus, .soft-form select:focus, .soft-form textarea:focus { border-color: var(--primary); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 20px; }
.legal-content h1 { font-family: var(--font-head); color: var(--secondary); }
.line { width: 50px; height: 4px; background: var(--primary); margin-bottom: 30px; border-radius: 2px; }

/* Footer */
.footer { padding: 50px 0 20px; background: var(--white); margin-top: 80px; border-top: 1px solid #eee; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.f-logo h4 { font-family: var(--font-head); font-weight: 800; color: var(--secondary); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #777; font-size: 0.9rem; }
.f-links a:hover { color: var(--primary); }
.copyright { text-align: center; font-size: 0.8rem; color: #aaa; }

@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-grid, .grid-3, .packages-list, .guides-grid, .contact-card { grid-template-columns: 1fr; }
    .hero-img { order: -1; }
    .float-box { position: relative; bottom: 0; left: 0; margin-top: -20px; justify-content: center; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}