/* --- AYSAVP FINAL STYLES --- */
:root { 
    --blue: #2563eb; 
    --blue-hover: #1d4ed8;
    --dark-navy: #0f172a;
    --light-blue: #60a5fa;
    --slate: #334155;
    --bg-light: #f8fafc;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; color: var(--slate); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
header { padding: 20px 0; border-bottom: 1px solid #e2e8f0; background: white; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-box { background: var(--blue); color: white; padding: 4px 8px; border-radius: 4px; }
nav a { text-decoration: none; color: var(--slate); margin: 0 15px; font-weight: 500; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--blue); border-bottom: 2px solid var(--blue); }
.phone-link a { text-decoration: none; color: inherit; font-weight: 600; transition: 0.3s; }
.phone-link a:hover { color: var(--blue); transform: scale(1.05); display: inline-block; }

/* Hero Sections */
.hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; text-align: center; padding: 120px 0; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--light-blue); }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; opacity: 0.9; }
.hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.hero-small { background: var(--dark-navy); color: white; text-align: center; padding: 60px 0; }

/* Button Reactions */
.btn-primary { 
    background: var(--blue); color: white; border: none; padding: 14px 28px; 
    border-radius: 6px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; 
}
.btn-primary:hover { 
    background: var(--blue-hover); transform: translateY(-4px); 
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4); 
}

.btn-white {
    background: white; color: var(--blue); border: 2px solid white; 
    padding: 14px 32px; border-radius: 6px; cursor: pointer; font-weight: 700; transition: all 0.3s ease;
}
.btn-white:hover {
    background: transparent; color: white; transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-outline { 
    background: transparent; color: var(--blue); border: 2px solid var(--blue); 
    padding: 12px 24px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; 
}
.btn-primary-outline:hover { 
    background: var(--blue); color: white; transform: translateY(-4px); 
}

/* Grids & Cards */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 10px; color: var(--dark-navy); }
.section-subtitle { text-align: center; margin-bottom: 50px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { padding: 30px; border: 1px solid #e2e8f0; border-radius: 12px; background: white; transition: 0.3s; text-align: center; }
.card:hover { transform: translateY(-10px); border-color: var(--blue); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

/* Services Page Layout */
.flex-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.flex-row.reverse { flex-direction: row-reverse; }
.image-box { flex: 1; height: 350px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); background: #ccc; }
.image-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.image-box:hover img { transform: scale(1.1); }
.text-box { flex: 1; }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; font-weight: 500; }
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 900; margin-right: 10px; font-size: 1.2rem; }

/* Packages */
.packages-section { background: var(--bg-light); }
.package-card .price { font-size: 1.5rem; font-weight: 700; margin: 20px 0; color: var(--dark-navy); }
.package-card.featured { background: linear-gradient(135deg, var(--blue), #0891b2); color: white; transform: scale(1.05); border: none; }
.package-card.featured .price { color: white; }

/* Contact Page Specifics */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.info-card { background: white; border: 1px solid #e2e8f0; padding: 30px; border-radius: 12px; text-align: center; transition: 0.3s; }
.info-card:hover { transform: translateY(-8px); border-color: var(--blue); }
.icon-circle { background: var(--blue); color: white; width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 1.2rem; }

/* Form */
.form-section { background: var(--bg-light); padding: 80px 0; border-radius: 20px; }
.form-container { max-width: 700px; margin: 0 auto; background: white; padding: 40px; border-radius: 12px; border: 1px solid #e2e8f0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 15px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 0.9rem; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; }
.full-width { width: 100%; }

/* FAQ - Blue Border Style */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #f8fafc; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 5px solid var(--blue); text-align: left; }
.faq-item strong { display: block; font-size: 1.1rem; margin-bottom: 10px; color: var(--dark-navy); }

/* Footer & Floating Button */
.bottom-cta { background: linear-gradient(90deg, #2563eb, #0891b2); color: white; text-align: center; padding: 80px 0; }
footer { background: #020617; color: white; padding: 60px 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: white; }

.floating-call { position: fixed; bottom: 30px; right: 30px; background: #22c55e; color: white; padding: 15px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4); z-index: 9999; transition: all 0.3s ease; }
.floating-call:hover { transform: scale(1.1) translateY(-5px); background: #16a34a; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .flex-row, .flex-row.reverse, .footer-grid, .nav-flex { flex-direction: column; gap: 30px; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .nav-flex nav { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
    .grid-3 { grid-template-columns: 1fr; }
}
