:root {
    --primary-blue: #0D9488;  
    --primary-light: #14B8A6;
    --primary-dark: #0F766E;
    --brand-gradient: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    --accent-orange: #F59E0B; 
    --accent-hover: #D97706;
    --brand-rgb: 13, 148, 136; 
    --brand-bg-light: linear-gradient(135deg, rgba(var(--brand-rgb), 0.05) 0%, rgba(var(--brand-rgb), 0.15) 100%);
    --bg-gradient: var(--brand-bg-light);
    --deep-blue: #0F172A; 
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --card-border: #E2E8F0;
    --input-bg: #F1F5F9;
    --header-bg: rgba(255, 255, 255, 0.98);
    
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-button: 0 4px 14px rgba(245, 158, 11, 0.4);
    
    --radius-xl: 16px; 
    --radius-md: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --deep-blue: #F8FAFC; 
    --white: #1E293B; 
    --bg-light: #0F172A; 
    --text-dark: #F1F5F9; 
    --text-muted: #94A3B8; 
    --card-border: #334155;
    --input-bg: #0F172A;
    --header-bg: rgba(30, 41, 59, 0.98);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

* { margin:0; padding:0; box-sizing:border-box; scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; padding-bottom: 140px; transition: var(--transition-smooth); }
a, button, select, input, .faq-item summary { cursor: pointer; }
img { max-width: 100%; height: auto; }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blinkSplash { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

.splash-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #ffffff; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; z-index: 999999; transition: opacity 0.4s ease; }
.splash-hidden { opacity: 0; pointer-events: none; }
#splashIcon { color: var(--primary-blue); font-size: 50px; font-weight: 800; animation: blinkSplash 1.2s infinite; text-transform: uppercase; letter-spacing: 2px; }

header { background: var(--header-bg); padding: 12px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--card-border); transition: var(--transition-smooth); backdrop-filter: blur(10px); gap: 15px;}
.header-top-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand-logo { font-size: clamp(20px, 4vw, 24px); font-weight: 800; text-decoration: none; color: var(--primary-blue); letter-spacing: 0.5px; display: flex; align-items: center; gap: 10px; z-index: 2; }

.header-controls { display: flex; align-items: center; gap: 15px; z-index: 2; }
.top-nav { display: flex; gap: 25px; align-items: center; z-index: 1; width: 100%; justify-content: center; border-top: 1px solid var(--card-border); padding-top: 12px;}
.top-nav a { font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition-smooth); }
.top-nav a:hover, .top-nav a.active-link { color: var(--primary-light); }

@media (min-width: 981px) { .top-nav { position: absolute; left: 50%; transform: translateX(-50%); border: none; padding: 0;} }

.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: var(--white); min-width: 200px; box-shadow: var(--shadow-card); z-index: 1001; border-radius: var(--radius-md); overflow: hidden; top: 100%; left: 0; border: 1px solid var(--card-border); }
.dropdown-content a { color: var(--text-dark); padding: 12px 16px; text-decoration: none; display: block; font-size: 13px; text-transform: none; border-bottom: 1px solid var(--input-bg);}
.dropdown-content a:hover { background-color: var(--input-bg); color: var(--primary-blue); padding-left: 20px; }
.dropdown:hover .dropdown-content { display: block; }

.mobile-menu-btn { display: none; background: transparent; border: none; font-size: 26px; color: var(--primary-blue); cursor: pointer; padding: 5px; }

.header-book-btn { background: var(--brand-gradient); color: #fff; border: none; padding: 8px 16px; border-radius: var(--radius-md); font-weight: 600; font-size: 12px; text-transform: uppercase; transition: var(--transition-smooth); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.header-book-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.15);}

.theme-toggle { background: var(--input-bg); border: 1px solid var(--card-border); color: var(--text-dark); width: 34px; height: 34px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.theme-toggle:hover { background: var(--card-border); }
.theme-toggle svg { width: 16px; height: 16px; }
.sun-icon { display: none; color: #F59E0B; }
.moon-icon { display: block; color: #6B7280; }
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }

.hero-wrapper { background: var(--bg-gradient); padding: clamp(40px, 6vw, 80px) 20px; position: relative; border-bottom: 1px solid var(--card-border); }
.section-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-badge { background: var(--white); padding: 8px 14px; border-radius: 30px; font-size: 13px; font-weight: 600; color: var(--text-dark); border: 1px solid var(--card-border); display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-soft);}
.check-icon { color: var(--white); background: var(--primary-blue); border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: bold; }

.brand-panel { padding: 0; text-align: left; background: transparent; border: none; box-shadow: none; animation: slideUp 0.8s ease-out backwards; }
#brandHeadline { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--deep-blue); margin-bottom: 15px; line-height: 1.15; letter-spacing: -1px; }
#brandHeadline span { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
#brandDescription { font-size: clamp(16px, 3vw, 18px); color: var(--text-muted); font-weight: 400; line-height: 1.7;}

.form-panel { animation-delay: 0.2s; padding: clamp(25px, 5vw, 40px); background: var(--white); position: relative; z-index: 2; border-radius: var(--radius-xl); box-shadow: var(--shadow-card); border: 1px solid var(--card-border); border-top: 5px solid var(--primary-blue); }
.form-panel h2 { margin-bottom: 20px; font-size: clamp(20px, 4vw, 24px); color: var(--deep-blue); font-weight: 700; text-align: center; }

form { display: flex; flex-direction: column; gap: 16px; }
input, select { width: 100%; padding: 14px 16px; border-radius: var(--radius-md); border: 1.5px solid var(--card-border); font-size: 14px; background: var(--input-bg); color: var(--text-dark); transition: var(--transition-smooth); font-family: inherit; font-weight: 500; }
input:focus, select:focus { outline: none; border-color: var(--primary-blue); background: var(--white); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.1); }
.form-row-2 { display: flex; gap: 16px; width: 100%; }
.form-row-2 > input, .form-row-2 > select { flex: 1; width: 50%; min-width: 0; }
option { background: var(--white); color: var(--text-dark); }
.cost-display { display: none; background: rgba(var(--brand-rgb), 0.05); color: var(--primary-blue); border: 2px dashed rgba(var(--brand-rgb), 0.3); padding: 15px; border-radius: var(--radius-md); text-align: center; font-weight: 700; font-size: 16px; margin-top: 5px; animation: slideUp 0.3s ease; }

button[type="submit"] { background: var(--accent-orange); color: #fff; padding: 16px 20px; border-radius: var(--radius-md); font-size: 16px; font-weight: 700; transition: var(--transition-smooth); width: 100%; box-shadow: var(--shadow-button); margin-top: 10px; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; }
button[type="submit"]:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 20px rgba(245, 158, 11, 0.4); }
button:disabled { background: var(--text-muted); cursor: not-allowed; box-shadow: none; transform: none;}

.section-title { text-align: center; margin-bottom: 45px; font-size: clamp(26px, 5vw, 36px); font-weight: 800; color: var(--deep-blue); line-height: 1.2;}
.section-title span { color: var(--primary-blue); }

.services-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.service { background: var(--white); padding: 35px 25px; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); transition: var(--transition-smooth); border: 1px solid var(--card-border); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: space-between; }
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.service-img { width: 65px; height: 65px; object-fit: contain; margin-bottom: 20px; transition: var(--transition-smooth); background: var(--input-bg); padding: 12px; border-radius: 50%; }
.service:hover .service-img { background: rgba(var(--brand-rgb), 0.1); transform: scale(1.1); }
.service h3 { font-size: 19px; font-weight: 700; color: var(--deep-blue); margin-bottom: 12px;}
.service p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 25px;}
.card-book-btn { display: inline-block; padding: 10px 25px; width: auto; background-color: var(--input-bg); color: var(--primary-blue); border: 1px solid var(--card-border); border-radius: 30px; font-weight: 600; transition: var(--transition-smooth); font-size: 13px; text-transform: uppercase; }
.service:hover .card-book-btn { background: var(--brand-gradient); color: var(--white); border-color: transparent; box-shadow: 0 4px 10px rgba(var(--brand-rgb), 0.3); }

.about-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.about-content { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--card-border); padding: 40px; }
.about-content h3 { font-size: clamp(22px, 4vw, 28px); color: var(--deep-blue); font-weight: 800; margin-bottom: 15px; }
.about-content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 25px;}
.about-list { list-style: none; padding: 0; }
.about-list li { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 15px; display: flex; align-items: center; gap: 12px; }
.about-list .check-icon { background: rgba(var(--brand-rgb), 0.1); color: var(--primary-blue); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--card-border); padding: 30px 20px; text-align: center; display: flex; flex-direction: column; justify-content: center; transition: var(--transition-smooth); }
.stat-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.stat-box h4 { font-size: 36px; font-weight: 800; color: var(--primary-blue); margin-bottom: 5px; line-height: 1;}
.stat-box p { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0;}

.reviews-section { max-width: 100vw; overflow: hidden; background: var(--bg-gradient); padding: 80px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.marquee-wrapper { overflow: hidden; white-space: nowrap; width: 100%; position: relative; }
.marquee-content { display: inline-flex; animation: marquee 45s linear infinite; gap: 20px; padding-left: 20px;}
.marquee-content:hover { animation-play-state: paused; }
.review-card { min-width: 320px; max-width: 320px; background: var(--white); padding: 25px; border-radius: var(--radius-xl); box-shadow: var(--shadow-card); border: 1px solid var(--card-border); white-space: normal; display: flex; flex-direction: column; justify-content: space-between; }
.review-card .stars { color: #F59E0B; font-size: 18px; margin-bottom: 10px;}
.review-card p { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 15px; line-height: 1.6; }
.review-card h4 { font-size: 15px; color: var(--deep-blue); font-weight: 700; }
.review-card span { font-size: 12px; color: var(--text-muted); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.faq-section { max-width: 900px; margin: 80px auto; padding: 0 20px; }
.faq-item { margin-bottom: 15px; overflow: hidden; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--card-border); box-shadow: var(--shadow-soft);}
.faq-item summary { padding: 20px 25px; font-weight: 600; font-size: 16px; color: var(--deep-blue); display: flex; justify-content: space-between; align-items: center; list-style: none; background: var(--bg-light); transition: var(--transition-smooth);}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--primary-blue); font-weight: 400;}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--card-border); background: var(--white); }
.faq-content { padding: 20px 25px; color: var(--text-muted); line-height: 1.8; font-size: 15px; }

.contact-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: stretch; }
.contact-info { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--card-border); padding: clamp(30px, 5vw, 40px); }
.contact-info h3 { font-size: clamp(20px, 4vw, 24px); margin-bottom: 30px; color: var(--deep-blue); font-weight: 800; border-bottom: 2px solid var(--input-bg); padding-bottom: 15px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.info-icon { width: 45px; height: 45px; flex-shrink: 0; border-radius: var(--radius-md); background: rgba(var(--brand-rgb), 0.1); color: var(--primary-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.info-text strong { display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.info-text span { font-size: 15px; color: var(--text-dark); font-weight: 500; word-break: break-word; }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--card-border); min-height: 350px; background: var(--input-bg); box-shadow: var(--shadow-soft);}
.contact-map iframe { width: 100%; height: 100%; min-height: 350px; border: 0; display: block;}

.legal-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.legal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.legal-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--card-border); padding: 35px 25px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition-smooth); }
.legal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.legal-card h3 { font-size: 18px; color: var(--deep-blue); margin-bottom: 12px; font-weight: 700; }
.legal-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.legal-btn { display: inline-block; margin-top: 25px; padding: 8px 15px; font-size: 13px; font-weight: 600; color: var(--primary-blue); background-color: transparent; border: 1px solid var(--card-border); border-radius: var(--radius-md); text-decoration: none; transition: var(--transition-smooth); align-self: flex-start; }
.legal-btn:hover { border-color: var(--primary-blue); background: var(--bg-light); }

/* Remove keywords section CSS entirely since search is removed */

footer { background: var(--brand-gradient); color: rgba(255, 255, 255, 0.85); padding: 70px 20px 100px; font-size: 14px; border-top: 1px solid rgba(0,0,0,0.1); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-section h3 { color: #ffffff; margin-bottom: 25px; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid rgba(255,255,255,0.2); padding-bottom: 10px; display: inline-block;}
.footer-section p { margin-bottom: 12px; }
.footer-section a { color: #ffffff; text-decoration: none; transition: var(--transition-smooth); opacity: 0.9;}
.footer-section a:hover { opacity: 1; text-decoration: underline; padding-left: 5px; }
.footer-bottom { text-align: center; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; max-width: 1200px; margin-left: auto; margin-right: auto;}

.bottom-action-bar { position: fixed; bottom: 76px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 2000; pointer-events: none; }
.bottom-action-container { display: flex; width: 100%; box-shadow: 0 -5px 20px rgba(0,0,0,0.15); pointer-events: auto; }
.action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 18px 10px; font-size: clamp(14px, 4vw, 16px); font-weight: 700; text-decoration: none; color: #ffffff !important; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition-smooth); }
.wa-btn { background: #10B981; }
.wa-btn:hover { background: #059669; }
.call-btn { background: var(--primary-blue); border-left: 1px solid rgba(255,255,255,0.2); }
.call-btn:hover { opacity: 0.9; }

.bottom-nav-bar { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--header-bg); border-top: 1px solid var(--card-border); display: flex; justify-content: space-around; align-items: center; padding: 12px 0 16px 0; z-index: 2001; backdrop-filter: blur(10px); }
.nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition-smooth); gap: 4px; width: 20%; }
.nav-item svg { width: 22px; height: 22px; transition: var(--transition-smooth); stroke: currentColor; }
.nav-item:hover, .nav-item.active { color: var(--primary-blue); }

.modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.9); align-items: center; justify-content: center; padding: 20px;}
.modal-content { background: var(--white); padding: clamp(30px, 5vw, 40px); width: 100%; max-width: 480px; border-radius: var(--radius-xl); text-align: center; position: relative; animation: slideUp 0.3s ease-out; box-shadow: var(--shadow-card);}
.close-btn { position: absolute; top: 15px; right: 15px; font-size: 28px; color: var(--text-muted); cursor: pointer; width: 35px; height: 35px; border-radius: 50%; background: var(--input-bg); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.close-btn:hover { background: var(--primary-blue); color: var(--white); }

@media (min-width: 981px) {
    .bottom-action-bar { bottom: 30px; }
    .bottom-action-container { max-width: 600px; border-radius: 50px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    .bottom-nav-bar { display: none; }
}
@media (max-width: 980px) { 
    .section-grid { grid-template-columns: 1fr; gap: 40px; } 
    .about-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; gap: 20px;} 
    .hero-wrapper { padding-bottom: 60px; padding-top: 30px;} 
    .header-top-row { flex-wrap: wrap; gap: 10px; }
    .mobile-menu-btn { display: block; }
    .top-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow-card); padding: 10px 0; border-top: 1px solid var(--card-border); align-items: flex-start; gap: 0; }
    .top-nav.active { display: flex; animation: slideUp 0.2s ease; }
    .top-nav > a, .dropdown { width: 100%; padding: 15px 25px; border-bottom: 1px solid var(--input-bg); box-sizing: border-box; }
    .dropdown .dropbtn { width: 100%; text-align: left; display: block;}
    .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 20px; background: transparent; width: 100%; display: none; }
    .dropdown.active .dropdown-content { display: block; margin-top: 10px; }
    .dropdown-content a { border-bottom: none; padding: 10px 15px;}
    .trust-badges { justify-content: center; }
    #brandHeadline { text-align: center; font-size: 34px;}
    #brandDescription { text-align: center; }
    .form-panel { padding: 30px 20px; border-radius: 12px; }
    .form-panel h2 { margin-bottom: 15px; font-size: 20px; text-align: left; }
    form { gap: 12px; }
    input, select { padding: 12px 14px; font-size: 14px; }
    .form-row-2 { flex-direction: column; gap: 12px; }
    .form-row-2 input, .form-row-2 select { width: 100%; }
    .form-row-2:last-of-type { flex-direction: row; } 
    button[type="submit"] { padding: 14px 20px; font-size: 15px; }
    .footer-bottom { text-align: center; justify-content: center; flex-direction: column; gap: 10px; }
}