/* --- LOCAL FONTS --- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/outfit.woff2') format('woff2');
}

/* --- CSS VARIABLES & THEMING (Light Blue & Modern) --- */
:root {
    /* Colors */
    --color-primary: #0284c7; /* Sky 600 */
    --color-primary-light: #38bdf8; /* Sky 400 */
    --color-primary-dark: #0369a1; /* Sky 700 */
    --color-secondary: #0f172a; /* Slate 900 */
    
    --color-bg-main: #f8fafc; /* Slate 50 */
    --color-bg-card: #ffffff;
    --color-bg-glass: rgba(255, 255, 255, 0.85);
    
    --color-text-main: #1e293b; /* Slate 800 */
    --color-text-muted: #64748b; /* Slate 500 */
    --color-text-light: #f8fafc;
    
    --color-border: #e2e8f0; /* Slate 200 */
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.4);
    
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
}

h1 span, h2 span {
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: #f1f5f9; /* Slate 100 */
}

.mb-4 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 2.5rem !important; }
.mt-6 { margin-top: 2.5rem !important; }

/* --- LOGO STYLES --- */
.nav-logo {
    width: 250px;
    height: auto;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-logo {
    width: 150px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: rgba(2, 132, 199, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.logo i {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    color: var(--color-text-main);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #38bdf8, #e0f2fe);
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0284c7, #bae6fd);
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #7dd3fc, #f0f9ff);
    animation: float 8s ease-in-out infinite 2s;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05), transparent);
    z-index: -1;
    transition: height var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f0f9ff; /* Sky 50 */
    color: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.service-card:hover .icon-wrapper {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* --- ABOUT --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--color-text-main);
}

.check-list i {
    color: var(--color-primary);
}

.about-images {
    position: relative;
}

.image-glass-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

.rounded-image {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: white;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--color-secondary);
    animation: bounceSlow 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--color-primary);
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #f0f9ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
}

.contact-form-wrapper {
    background-color: var(--color-bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background-color: var(--color-bg-main);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
    background-color: white;
}

/* --- FOOTER --- */
.footer {
    background-color: white;
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 80px 0 24px;
}

.footer .logo {
    color: var(--color-secondary);
    font-size: 1.75rem;
}

.footer .logo span {
    color: var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 400px;
}

.footer-links h3 {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* --- SCROLL TO TOP --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* --- ANIMATIONS --- */
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        width: 200px;
    }
    
    .navbar.scrolled .nav-logo {
        width: 130px;
    }

    .nav-links {
        display: none; /* simple mobile menu handling */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Modal & Slider Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--color-bg-card);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px 20px 20px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--color-primary);
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.slide {
    display: none;
    animation: fade 0.5s;
    padding: 0 40px;
}

.slide.active {
    display: block;
}

.slider-img {
    height: 150px;
    object-fit: contain;
    margin: 0 auto 24px auto;
    border-radius: 12px;
    display: block;
}

.slide h3 {
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.slide p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    color: var(--color-text);
    transition: all 0.2s;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: var(--color-primary);
}

@keyframes fade {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.faq-accordion details {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-accordion details[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-primary);
}

.faq-accordion summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-secondary);
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color var(--transition-short);
}

.faq-accordion summary::-webkit-details-marker {
    display: none; /* Hide Safari triangle */
}

.faq-accordion summary:hover {
    background-color: rgba(var(--color-primary-rgb, 59, 130, 246), 0.05);
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.faq-accordion details[open] summary {
    border-bottom: 1px solid var(--color-border);
}

.faq-accordion details[open] summary::after {
    transform: rotate(45deg); /* Plus becomes a cross */
}

.faq-accordion .faq-content {
    padding: 20px 24px;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-size: 1rem;
    animation: fadeDown 0.3s ease-out forwards;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ADDON CARDS --- */
.addon-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: default;
}

.addon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.addon-card i {
    transition: transform 0.3s ease;
}

.addon-card:hover i {
    transform: scale(1.15);
}
/* --- WIZARD ERROR TOAST --- */
.wizard-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1e293b;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.wizard-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wizard-toast-icon {
    width: 22px;
    height: 22px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.85rem;
}
/* --- WIZARD FORM --- */
.wizard-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.wizard-progress-text {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 500;
}

.wizard-progress-bar {
    width: 100%;
    height: 12px;
    background-color: var(--color-border);
    border-radius: 6px;
    margin-bottom: 40px;
    overflow: hidden;
}

.wizard-progress-fill {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 6px;
    width: 10%; /* dynamically updated */
    transition: width 0.3s ease;
}

.wizard-step {
    display: none;
    animation: fade 0.3s ease-out;
}

.wizard-step.active {
    display: block;
}

.wizard-question {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 24px;
}

.wizard-question span {
    color: #ef4444; /* red asterisk */
}

/* Radio button grid */
.wizard-radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.wizard-radio-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .wizard-radio-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .wizard-radio-grid, .wizard-radio-grid-3 { grid-template-columns: 1fr; }
}

.wizard-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text);
}

.wizard-radio-label input[type="radio"],
.wizard-radio-label input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* Trust Badge */
.trust-badge-container {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.trust-badge-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trust-badge-header i {
    color: #84cc16; /* green */
    width: 48px;
    height: 48px;
}

.trust-badge-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    text-align: left;
}

.trust-badge-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}

.trust-badge-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

