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

:root {
 --primary-color: #00529B; /* Professional Blue */
 --primary-dark: #003B70;
 --secondary-color: #FFC107; /* Accent Yellow/Gold */
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --bg-dark: #343a40;
 --border-color: #dee2e6;
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
 --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
 --transition: all 0.3s ease;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- Base & Typography --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { 
 font-weight: 700; 
 line-height: 1.3; 
 color: var(--text-dark);
 margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
p { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

/* --- Buttons --- */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 24px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-align: center;
}
.btn-primary { 
 background: var(--primary-color); 
 color: white; 
 border-color: var(--primary-color);
}
.btn-primary:hover { 
 background: var(--primary-dark); 
 border-color: var(--primary-dark);
 transform: translateY(-2px); 
}
.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: white;
}
.btn-white {
 background: white;
 color: var(--primary-color);
 border-color: white;
}
.btn-white:hover {
 background: var(--bg-light);
 color: var(--primary-dark);
 border-color: var(--bg-light);
}

/* --- Header & Navigation --- */
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-dark);
 display: flex;
 align-items: center;
 gap: 8px;
}
.logo-icon { color: var(--primary-color); }
.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
 align-items: center;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 position: relative;
 padding: 8px 0;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
 width: 100%;
}
.header-actions { display: none; }
.nav-cta { white-space: nowrap; }

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* --- Sections --- */
.section { padding: 80px 0; }
.page-header { padding: 60px 0; text-align: center; background: var(--bg-light); }
.page-subtitle { max-width: 700px; margin: 1rem auto 0; font-size: 1.1rem; color: var(--text-light); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); color: var(--bg-light); text-align: center; }
.bg-dark .section-title, .bg-dark .section-subtitle { color: white; }
.text-center { text-align: center; }
.no-padding-top { padding-top: 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-label, .badge {
 display: inline-block;
 background: var(--primary-color);
 color: white;
 padding: 6px 16px; 
 border-radius: 20px;
 font-size: 0.8rem;
 font-weight: 700;
 margin-bottom: 1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.6; }

/* --- App Landing Hero --- */
.hero-app { padding: 80px 0; overflow: hidden; }
.hero-app-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text .badge { background-color: var(--secondary-color); color: var(--text-dark); }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text p { font-size: 1.1rem; max-width: 500px; margin-bottom: 1.5rem; }
.star-rating {
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 1.5rem;
 font-size: 1.2rem;
 color: var(--secondary-color);
}
.star-rating span { font-size: 0.9rem; color: var(--text-muted); }
.app-store-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.app-store-buttons img { height: 50px; width: auto; object-fit: contain; }
.app-store-buttons-footer { display: flex; flex-direction: column; gap: 16px; margin-top:20px;}
.app-store-buttons-footer img { height: 40px; }
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
 position: relative;
 width: 320px;
 height: 640px;
 background: #111;
 border-radius: 40px;
 padding: 15px;
 box-shadow: 0 20px 50px rgba(0,0,0,0.3);
 border: 4px solid #444;
}
.phone-screen { width: 100%; height: 100%; object-fit: cover; border-radius: 25px; }

/* --- Screenshots Section --- */
.screenshots-gallery {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}
.screenshot-item img {
 width: 100%;
 height: auto;
 object-fit: cover;
 border: 1px solid var(--border-color);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.screenshot-item img:hover {
 transform: translateY(-5px) scale(1.02);
 box-shadow: var(--shadow-lg);
}

/* --- Features Section --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
 text-align: center;
 padding: 24px;
}
.feature-icon {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background: var(--primary-color);
 color: white;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 1.5rem;
}
.feature-icon svg { width: 28px; height: 28px; }

/* --- Timeline / How it works --- */
.timeline {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
 position: relative;
}
.timeline::before {
 content: '';
 position: absolute;
 top: 20px;
 left: 12.5%;
 right: 12.5%;
 height: 2px;
 background: var(--border-color);
 z-index: -1;
}
.timeline-step { text-align: center; padding: 20px 10px; }
.timeline-step h3 {
 margin-bottom: 1rem;
 position: relative;
 padding-top: 50px;
}
.timeline-step h3::before {
 content: '';
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: var(--bg-white);
 border: 2px solid var(--primary-color);
}
.timeline-step:first-child h3::before { background: var(--primary-color); }

/* --- Testimonials / Reviews --- */
.testimonial-card, .value-card {
 background: var(--bg-light);
 padding: 30px;
 border-radius: var(--radius-lg);
 text-align: center;
 border: 1px solid var(--border-color);
 transition: var(--transition);
}
.testimonial-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.testimonial-img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 3px solid var(--primary-color);
}
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { font-size: 0.9rem; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section { padding: 60px 0; }
.cta-section h2 { font-size: 2.25rem; }
.cta-section p { max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }

/* --- Card --- */
.card {
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column;}
.card-title { font-size: 1.25rem; }
.card-text { color: var(--text-light); flex-grow: 1; }

.info-card {
 background: white;
 padding: 30px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}

/* --- Media Object --- */
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.media-object.reverse .media-copy { grid-row: 1; }
.media-object.reverse .media-visual { grid-row: 1; }
@media (min-width: 768px) {
 .media-object.reverse .media-copy { grid-column: 2; }
 .media-object.reverse .media-visual { grid-column: 1; }
}

/* --- Team --- */
.team-card { text-align: center; }
.team-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; box-shadow: var(--shadow-md); }
.team-name { font-size: 1.25rem; }
.team-title { font-weight: 500; color: var(--primary-color); margin-bottom: 0.5rem; }
.team-bio { font-size: 0.9rem; }

/* --- Forms --- */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.contact-form-container { background: var(--bg-light); padding: 40px; border-radius: var(--radius-lg); }
.form-title { margin-bottom: 2rem; }
.form .form-group { margin-bottom: 1.5rem; }
.form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.form select {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: white;
 font-family: var(--font-main);
}
.form input:focus, .form textarea:focus, .form select:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(0, 82, 155, 0.2);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .checkbox-group { display: flex; align-items: center; gap: 10px; }
.form .checkbox-group input { width: auto; }
.form .checkbox-group label { margin-bottom: 0; font-weight: 400; font-size: 0.9rem; }
.form-submit-btn { width: 100%; padding: 16px; margin-top: 1rem; }
.contact-details h3 { font-size: 1.5rem; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item .contact-icon { font-size: 1.5rem; color: var(--primary-color); line-height: 1; }

.input-error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important; }
.field-error { color: #dc2626; font-size: 0.85rem; margin-top: 4px; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: #fff; animation: spin 0.8s linear infinite; margin-right: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7; cursor: not-allowed; }

/* --- Map & Video --- */
.map-container, .video-container {
 width: 100%;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 margin: 40px auto 0;
 position: relative;
 max-width: 1000px;
}
.map-container { height: 450px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-play-btn1 {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 font-size: 3rem;
 width: 100px;
 height: 100px;
 border-radius: 50%;
 background: rgba(0, 82, 155, 0.8);
 color: white;
 border: none;
 cursor: pointer;
 transition: var(--transition);
}
.video-play-btn1:hover { background: var(--primary-dark); }

/* --- FAQ --- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item { background: var(--bg-light); padding: 24px; border-radius: var(--radius-md); }
.faq-item h4 { font-size: 1.1rem; }

/* -- Footer --- */
.footer { background: var(--text-dark); color: #adb5bd; padding: 60px 0 30px; margin-top: 80px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 16px; display: block; }
.footer-description { font-size: 0.9rem; line-height: 1.6; color: #ced4da; margin-bottom: 20px; }
.footer-heading { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ced4da; text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: white; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; color: #ced4da; }
.footer-contact-item a { color: #ced4da; }
.footer-contact-item a:hover { color: white; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 30px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copyright { font-size: 0.85rem; color: #6c757d; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.85rem; color: #6c757d; text-decoration: none; }
.footer-legal-links a:hover { color: white; }
.footer-brand .logo-icon { display: inline-block; vertical-align: middle; }

/* --- Legal Pages --- */
.legal-page { padding: 80px 0; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page > .container > p { margin-bottom: 2rem; color: var(--text-muted); }
.legal-page section { margin-bottom: 2.5rem; }
.legal-page h2 { margin-bottom: 1rem; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; font-size: 1.5rem; }
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 1.5rem;
 font-size: 0.9rem;
}
.cookie-table th, .cookie-table td {
 padding: 12px;
 border: 1px solid var(--border-color);
 text-align: left;
}
.cookie-table th { background-color: var(--bg-light); font-weight: 600; }

/* --- Cookie Banner --- */
.cookie-banner {
 position: fixed;
 bottom: 20px;
 left: 20px;
 right: 20px;
 max-width: 600px;
 background: var(--text-dark);
 color: white;
 padding: 20px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-lg);
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
}
.cookie-banner p { margin-bottom: 0; font-size: 0.9rem; }
.cookie-banner p a { color: var(--secondary-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-buttons .btn { padding: 8px 16px; font-size: 0.9rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
 .header-actions { display: none; }
 .nav-links .nav-cta { display: block; }
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .screenshots-gallery { grid-template-columns: repeat(2, 1fr); }
 .timeline { grid-template-columns: 1fr 1fr; }
 .timeline::before { display: none; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .hero-app-content { grid-template-columns: 1fr; text-align: center; }
 .hero-text p { margin-left: auto; margin-right: auto; }
 .hero-visual { margin-top: 40px; }
 .app-store-buttons { justify-content: center; }
 .contact-grid { grid-template-columns: 1fr; }
 .contact-details { margin-top: 40px; }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: var(--bg-white);
 flex-direction: column;
 padding: 100px 40px 40px;
 gap: 24px;
 align-items: flex-start;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.25rem; }
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .faq-grid { grid-template-columns: 1fr; }
 .screenshots-gallery { grid-template-columns: 1fr; }
 .media-object { grid-template-columns: 1fr; }
 .media-object .media-visual { grid-row: 1; }
 .timeline { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-bottom { flex-direction: column; text-align: center; }
 .app-store-buttons-footer { flex-direction: row; justify-content: center; }
 .cookie-banner { flex-direction: column; text-align: center; }
 .form .form-row { grid-template-columns: 1fr; }
}