:root {
    --primary: #ED5335;
    --primary-dark: #f74c2a;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #f06c51;
    --light: #f1faee;
    --dark: #0d1b2a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Exo 2', sans-serif; line-height: 1.6; color: var(--dark); background: var(--white); }
        
/* Header */
.header { position: fixed; 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); }
.nav { max-width: 1400px; margin: 0 auto; height: 70px; padding: 0rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; fill: var(--white); }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--secondary); }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { display: flex; gap: 5px; align-items: center; text-decoration: none; color: var(--secondary); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white) !important; padding: 0.75rem 1.5rem; border-radius: 50px; }
.mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu span { width: 25px; height: 3px; background: var(--secondary); border-radius: 3px; }
header nav .logo img { width: 350px; height: auto; }

/* Hero */
.hero { background: linear-gradient(135deg, rgba(29,53,87,0.9), rgba(13,27,42,0.85)), url('hero.webp') center/cover; display: flex; align-items: center; padding: 35px 60px; }
.hero-container { max-width: 1400px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.2); }
.hero-badge .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h2 { font-size: 2.5rem; color: var(--white); text-align: left; line-height: 1.2; margin-bottom: 15px; }
.hero h2 span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; max-width: 500px; }
.hero-stats { display: flex; gap: 10px; margin-top: 2.5rem; justify-content: start; }
.stat-item { text-align: center; width: 33%; background: #ffffff0d; padding: 10px; border-radius: 10px; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.9rem; opacity: 0.8; }

/* Form Card */
.form-card { background: var(--white); border-radius: 20px; padding: 15px 20px 15px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.form-header { text-align: center; margin-bottom: 15px; }
.form-header h2 { font-size: 1.75rem; color: var(--secondary); margin-bottom: 0; text-align: center; }
.form-header p { color: var(--gray-500); font-size: 0.95rem; }
.enquiry-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { position: relative; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--secondary); font-size: 0.9rem; }
.form-group label .required { color: var(--primary); }
.form-group input, .form-group select { width: 100%; padding: 0.9rem 1rem 0.9rem 2.75rem; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: var(--gray-100); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(230,57,70,0.1); }
.form-group .icon { position: absolute; left: 1rem; top: 50px; width: 18px; height: 18px; fill: var(--gray-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Radio Options */
.intent-group { margin-top: 0.5rem; }
.radio-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.radio-option { flex: 1; min-width: 120px; }
.radio-option input { display: none; }
.radio-option label { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius); cursor: pointer; transition: var(--transition); background: var(--gray-100); font-size: 0.85rem; }
.radio-option label svg { width: 18px; height: 18px; fill: var(--gray-500); transition: var(--transition); }
.radio-option input:checked + label { border-color: var(--primary); background: linear-gradient(135deg, rgba(230,57,70,0.05), rgba(230,57,70,0.1)); color: var(--primary); }
.radio-option input:checked + label svg { fill: var(--primary); }
.radio-option label:hover { border-color: var(--secondary-light); }

/* Submit Button */
.submit-btn { width: 100%; padding: 1rem 2rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border: none; border-radius: var(--radius); font-family: inherit; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.5rem; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,57,70,0.3); }
.submit-btn svg { width: 20px; height: 20px; fill: currentColor; }
.submit-btn.loading { pointer-events: none; opacity: 0.8; }
.submit-btn .spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-footer { text-align: center; margin-top: 0rem; font-size: 0.8rem; color: var(--gray-500); }
.form-footer svg { width: 14px; height: 14px; fill: var(--gray-500); vertical-align: middle; margin-right: 0.25rem; }

/* Features */
.about { padding: 5rem 2rem; background: var(--white); background: url('about.jpg') no-repeat bottom center; background-size: cover; }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-container .data .section-header { margin-bottom: 1rem; }
.about-container .data .section-header h2 { color: var(--white); }
.about-container .data p { margin-bottom: 20px; color: var(--white); }

/* Features */
.features { padding: 5rem 2rem; background: var(--gray-100); }
.features-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 30px; }
.feature-card { background: var(--white); padding: 2rem; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid var(--gray-200); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(244,162,97,0.1)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.feature-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.feature-card h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); }

/* Footer */
.footer { background: var(--dark); color: var(--light); padding: 4rem 2rem 2rem; }
.footer-brand .logo img { width: 100%; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-brand p { color: var(--gray-300); font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.footer-brand .logo-text { color: var(--white); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--primary); }
.social-links svg { width: 18px; height: 18px; fill: var(--white); }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--white); }
.footer-column ul { list-style: none; display: flex; gap: 20px; }
.footer-column ul li { margin-bottom: 0.75rem; }
.footer-column ul a { color: var(--gray-300); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-column ul a:hover { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray-300); }

/* Modal */
.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; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: 20px; padding: 3rem; text-align: center; max-width: 400px; transform: scale(0.9); transition: var(--transition); }
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.modal-icon.success { background: linear-gradient(135deg, #4ade80, #22c55e); }
.modal-icon.error { background: linear-gradient(135deg, #f87171, #ef4444); }
.modal-icon svg { width: 40px; height: 40px; fill: var(--white); }
.modal h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.75rem; }
.modal p { color: var(--gray-500); margin-bottom: 1.5rem; }
.modal-btn { padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border: none; border-radius: 50px; font-family: inherit; font-size: 1rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.modal-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,57,70,0.3); }

/* CTA Section */
.cta-section { margin-top: 70px; position: relative; display: flex; align-items: center; }
.cta-section img { width: 100%; }
.cta-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(110deg, rgb(157 30 5) 0%, rgb(29 53 87 / 0%) 50%); }
.cta-container {position: absolute; left: 100px; z-index: 1; max-width: 40%; color: var(--white); }
.cta-container .section-header { margin-bottom: 0; }
.cta-container .section-header h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: var(--white); text-align: left; }
.cta-container p { color: var(--white); font-size: 1.1rem;margin-bottom: 0rem; line-height: 1.7; }
.cta-btn {display: inline-flex; align-items: center; gap: 0.75rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); text-decoration: none; padding: 1rem 2.5rem; border-radius: var(--radius); font-size: 1.1rem; font-weight: 600; transition: var(--transition); box-shadow: 0 10px 30px rgba(237, 83, 53, 0.4); }
.cta-btn:hover {transform: translateY(-3px); box-shadow: 0 15px 40px rgba(237, 83, 53, 0.5); }
.cta-btn svg {width: 22px; height: 22px; fill: currentColor; transition: var(--transition); }
.cta-btn:hover svg {transform: translateX(5px); }
.cta-container small { color: var(--white); }
.d-none { display: none !important; }
.form-card-wrap { position: relative; top: -90px; }
.button-labels { display: flex; gap: 10px; margin-top: .5rem; flex-wrap: wrap; justify-content: start; }
.button-labels button { padding: 0.85rem 1.75rem; border: 0px solid var(--white); background: transparent; color: var(--white); font-family: inherit; font-size: 1rem; font-weight: 600; border-radius: 10px; cursor: pointer; transition: var(--transition); background: linear-gradient(135deg, #f1755d, #f1755d); display: flex; justify-content: center; align-items: center; gap: 5px; line-height: 20px; }
.button-labels button svg { width: 18px; height: 18px; fill: var(--white); }
.button-labels button:hover svg, .button-labels button.active svg { fill: var(--primary); }
.button-labels button:hover { background: var(--white); color: var(--primary); }
.button-labels button.active { background: var(--white); color: var(--primary); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); }

.logos { background: var(--white); display: flex; justify-content: space-between; align-items: center; padding: 20px; border-radius: 20px; margin-bottom: 60px; }
.logoss { position: absolute; top: 60px; display: flex; justify-content: start; align-items: center; gap: 30px; padding: 0px; border-radius: 20px; margin-bottom: 80px; }
.logoss a { display: flex; }
.footer-brand a.logo { flex-direction: column; align-items: start; gap: 20px; }
.footer-brand a.logo img { width: auto; }
.text-center {text-align: center;}
.mobile-only { display: none; }
#get-started { position: relative; top: -120px; }
.footer-bottom p { display: flex; align-items: center; }
.footer-bottom p a { color: var(--white); text-decoration: none; transition: .5s; }
.footer-bottom p a:hover { color: var(--primary); }

.blink-2 {-webkit-animation: blink-2 2s infinite both;animation: blink-2 2s infinite both;}
@-webkit-keyframes blink-2 {0% {opacity: 1;}50% {opacity: 0.2;}100% {opacity: 1;}}
@keyframes blink-2 {0% {opacity: 1;}50% {opacity: 0.2;}100% {opacity: 1;}}

/* Responsive */
@media (max-width: 1024px) {
    .cta-container { left: 45px; max-width: 45%; }
    .cta-container .section-header h1 { font-size: 2.5rem;}
    .button-labels button { padding: 0.85rem 1rem; }
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { text-align: center; }
    .hero h2 { font-size: 2rem; text-align: center; }
    .hero-text { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { align-items: center; display: flex; flex-direction: column; }
    .footer-column { text-align: center; }
    .footer-brand a.logo { align-items: center; }
    .logoss { position: relative; top: 0; justify-content: center;}
    .hero h2 br { display: none; }
    header nav .logo img { width: 300px; }
    .nav-links { gap: 1rem; }
    #get-started { top: -130px;}
    .section-header h2 { font-size: 2rem; }
    .stat-number { font-size: 1.8rem; }
    .about { padding: 40px; }
}
@media (max-width: 992px) {
    .cta-section { flex-direction: column; padding: 0 0 50px 0; background: #ee5335; }
    .cta-container { position: relative; left: 0px; max-width: 100%; color: #000; padding: 0 15px; padding-top: 30px; text-align: center; }
    .cta-overlay { display: none; }
    .cta-container .section-header { margin-bottom: 0; }
    .cta-container .section-header h1 { color: var(--white); text-align: center; margin-bottom: 15px; font-size: 2rem; }
    .cta-container p { margin-bottom: 15px; color: var(--white) }
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    .cta-btn { box-shadow: 0 3px 15px rgba(237, 83, 53, 0.4); padding: 12px 20px; font-size: 16px; }
    .cta-section img { width: auto; }
    .logoss { justify-content: center; margin-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; margin-bottom: 15px; }
    #get-started { top: -130px;}
    .footer-bottom p { justify-content: center;}
    .button-labels { justify-content: center; }
}
@media (max-width: 768px) {
    .nav { padding: 0rem 1rem; }
    .nav-links a { font-size: 14px; }
    header nav .logo img { width: 250px; }
    .mobile-menu { display: flex; }
    .hero { padding: 40px 1.5rem 40px; }
    .hero h2 { font-size: 2.25rem; text-align: center; }
    .hero-stats { gap: 1.5rem; }
    .form-card { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .radio-options { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .about-container .data { grid-template-columns: 1fr; gap: 50px; }
    .cta-section { flex-direction: column; padding: 0 0 50px 0; margin-top: 60px; }
    .cta-container { position: relative; left: 0px; max-width: 100%; color: #000; padding: 0 15px; padding-top: 30px; text-align: center; }
    .cta-overlay { display: none; }
    .cta-container .section-header { margin-bottom: 0; }
    .cta-container p { margin-bottom: 15px; color: var(--white) }
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    .cta-btn { box-shadow: 0 3px 15px rgba(237, 83, 53, 0.4); padding: 12px 20px; font-size: 16px; }
    .cta-section img { width: 100%;}
    #get-started { top: -120px;}
    .stat-number { font-size: 2rem; }
}
@media (max-width: 600px) {
    .hero { padding: 2rem 1rem 2rem; }
    .hero h2 { font-size: 2rem; text-align: center; }
    .hero-container { gap: 2rem; }
    .hero-stats { gap: 5px; margin-top: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { line-height: 20px; }
    .form-card { padding: 1.75rem 20px; }
    .form-header p { line-height: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .radio-options { flex-direction: column; }
    .logoss { margin-bottom: 35px; }
    .logoss img { width: 100%; }
    .footer-column ul { display: grid; gap: 0 20px; flex-direction: column; grid-template-columns: 1fr 1fr; }
    .about, .features { padding: 40px 15px; }
    .section-header h2 { font-size: 24px; text-align: center;}
    .nav-links a { font-size: 0; }
    .nav-links { gap: 5px; }
    .nav { height: 60px; padding: 0rem 10px; }
    .footer-bottom p span { display: block; }
    .footer { padding: 40px 15px 30px; }
    .footer-bottom { margin: 20px auto 0; padding-top: 20px; }
    .social-links { margin-bottom: 0px; }
    #get-started { top: -100px;}
    .footer-bottom p { flex-direction: column; }
    .button-labels { flex-direction: row; gap: 5px; justify-content: center; }
    .button-labels button { width: 32%; border-radius: 10px; padding: 10px 10px; flex-direction: column; }
    .button-labels button svg { width: 24px; height: 24px; }
}