:root {
    --light-blue: #00c3ff;
    --dark-blue: #0160e7;
    --red: #fe4c1c;
    --white: #ffffff;
    --black: #000000;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

body { 
    background-color: #f4f4f4; 
    color: var(--black); 
    max-width: 100%; 
    overflow-x: clip; 
}

/* ========================================= */
/* --- HEADER & NAVIGATION --- */
/* ========================================= */
.sub-header {
    background-color: var(--dark-blue); color: var(--white);
    padding: 10px 5%; display: flex; justify-content: space-between;
    font-size: 14px;
}
.sub-header a { color: var(--white); text-decoration: none; margin-left: 15px; }

header {
    background-color: var(--white); padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header .logo { font-size: 24px; font-weight: bold; color: var(--dark-blue); }

.menu-toggle {
    display: none; font-size: 30px; cursor: pointer; color: var(--dark-blue);
}

header nav ul { list-style: none; display: flex; gap: 20px; }
header nav ul li a { text-decoration: none; color: var(--black); font-weight: bold; transition: color 0.3s; }
header nav ul li a:hover { color: var(--red); }

/* ========================================= */
/* --- BANNER SECTION --- */
/* ========================================= */
.banner {
    display: flex; flex-wrap: wrap; background-color: var(--light-blue);
    padding: 60px 5%; align-items: center; gap: 40px; 
}

.banner-form { flex: 0 0 calc(33.333% - 20px); min-width: 340px; }
.banner-form form {
    background: var(--white); 
    padding: 20px 20px; /* Added more breathing room inside the card */
    border-radius: 12px; /* Softer, more modern corners */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); /* Softer, larger shadow for a "floating" effect */
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 18px; /* Slightly more space between inputs */
    border-top: 5px solid var(--red); /* Clean accent line at the top */
}
.banner-form h3 { grid-column: span 2; color: var(--dark-blue); text-align: center; margin-bottom: 10px; font-size: 24px; }
.banner-form input, .banner-form select { padding: 12px; border: 1px solid #ddd; border-radius: 5px; width: 100%; font-size: 14px; background-color: #f9f9f9; }
.banner-form button {
    grid-column: span 2; background: var(--red); color: var(--white); border: none; padding: 15px; border-radius: 5px;
    cursor: pointer; font-weight: bold; font-size: 16px; text-transform: uppercase; transition: background 0.3s ease;
}

/* Upgraded Submit Button */
.banner-form button { 
    grid-column: span 2; 
    background: linear-gradient(135deg, var(--red), #d6380c); /* Adds subtle depth */
    color: var(--white); 
    border: none; 
    padding: 18px; 
    border-radius: 6px;
    cursor: pointer; 
    font-weight: bold; 
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(254, 76, 28, 0.4); /* Colored shadow for the button */
    transition: all 0.3s ease;
}

/* Button Hover State: Lifts up slightly */
.banner-form button:hover { 
    background: linear-gradient(135deg, #d6380c, var(--red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 76, 28, 0.6);
}
.banner-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.banner-text h1 { color: var(--white); font-size: 52px; font-weight: 900; margin-bottom: 15px; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }

/* Banner Animated Text */
.dynamic-text-container {
    display: flex; align-items: center; font-size: 28px; font-weight: bold;
    margin-bottom: 25px; flex-wrap: wrap; gap: 15px;
}
.dynamic-text-container .static { color: var(--black); }

.scrolling-wrapper {
    height: 45px; line-height: 45px; overflow: hidden; background: var(--dark-blue);
    color: var(--white); padding: 0 20px; border-radius: 8px; display: inline-block;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}
.scrolling-words {
    display: flex; flex-direction: column; animation: slideUpPro 8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; 
}
.scrolling-words span { height: 45px; display: flex; align-items: center; white-space: nowrap; }

@keyframes slideUpPro {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-45px); }
    50%, 70% { transform: translateY(-90px); }
    75%, 95% { transform: translateY(-135px); }
    100% { transform: translateY(0); }
}

/* Visibility Utility Classes */
.desktop-none { display: none; }

/* ========================================= */
/* --- GENERIC SECTIONS & ABOUT US --- */
/* ========================================= */
section { padding: 50px 5%; }
h2.section-title { text-align: center; color: var(--dark-blue); margin-bottom: 30px; }

.about-us { 
    display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; 
    gap: 60px; background: var(--white); padding: 60px 5%;
}
.about-img, .about-content { flex: 1 1 50%; max-width: 50%; }
.about-content { padding-right: 0; }
.about-img { position: relative; padding-bottom: 20px; }
.about-img img { width: 100%; box-shadow: 0 15px 30px rgba(0,0,0,0.15); border-radius: 10px; display: block; }

.experience-badge {
    position: absolute; bottom: 0; right: -20px; background: var(--dark-blue); color: var(--white);
    padding: 20px 25px; border-radius: 8px; font-weight: bold; box-shadow: 0 10px 20px rgba(1, 96, 231, 0.3);
    text-align: center; border: 4px solid var(--white);
}
.experience-badge span { display: block; font-size: 32px; color: var(--light-blue); margin-bottom: 5px; }

.about-content p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: #444; }
.about-features { list-style: none; margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.about-features li { font-size: 16px; font-weight: bold; color: var(--black); display: flex; align-items: center; gap: 10px; }

/* ========================================= */
/* --- BRANDS & FOOTER --- */
/* ========================================= */
.brands-marquee { overflow: hidden; white-space: nowrap; background: var(--white); padding: 20px 0; }

.brands-marquee-content { 
    display: inline-block; 
    animation: marquee 90s linear infinite; 
}

/* Optional: Pause the scrolling when a user hovers over the logos */
.brands-marquee:hover .brands-marquee-content {
    animation-play-state: paused;
}

.brands-marquee-content img { height: 60px; margin: 0 30px; vertical-align: middle; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

footer { background: var(--black); color: var(--white); padding: 40px 5% 10px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col h3 { color: var(--light-blue); margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--white); text-decoration: none; }
.footer-col a:hover { color: var(--red); }
.sub-footer { text-align: center; border-top: 1px solid #333; padding-top: 15px; font-size: 12px; }
.sub-footer p a {color: var(--light-blue);}

#scrollTopBtn {
    display: none; position: fixed; bottom: 20px; right: 20px; z-index: 99;
    background-color: var(--red); color: var(--white); border: none; width: 45px; height: 45px; 
    border-radius: 5px; cursor: pointer; font-size: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); transition: background-color 0.3s ease;
}
#scrollTopBtn:hover { background-color: var(--dark-blue); }

/* ========================================= */
/* --- TABLET RESPONSIVE (992px) --- */
/* ========================================= */
@media (max-width: 992px) {
    /* Fixed the display: block issue here to maintain horizontal alignment */
    .desktop-none { display: flex !important; justify-content: center; } 
    .mobile-none { display: none !important; } 
    
    .banner-form { flex: 100%; }
    .banner-text h1 { font-size: 38px; }
    .dynamic-text-container { font-size: 22px; margin-bottom: 0px !important;; }
	
}

/* ========================================= */
/* --- MOBILE RESPONSIVE (768px) --- */
/* ========================================= */
@media (max-width: 768px) {
    /* Header & Sub-header */
    .sub-header .contact-info { display: none; }
    .sub-header { padding: 10px 5%; justify-content: center; flex-direction: column; text-align: center; gap: 10px; }
    .sub-header .contact-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .sub-header .contact-links a { margin: 0; display: block; font-size: 13px; }
    
    header { flex-direction: row; justify-content: space-between; flex-wrap: wrap; padding: 15px 5%; gap: 15px; }
    .menu-toggle { display: block; }
    header nav { width: 100%; display: none; }
    header nav.active { display: block; }
    header nav ul { flex-direction: column; background: #f9f9f9; margin-top: 15px; border-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); gap: 0; flex-wrap: wrap; justify-content: center; }
    header nav ul li { width: 100%; text-align: center; border-bottom: 1px solid #eee; }
    header nav ul li:last-child { border-bottom: none; }
    header nav ul li a { display: block; padding: 15px; font-size: 16px; }

    /* Banner */
    .banner { padding: 15px 5%; flex-direction: column; gap: 30px; }
    .banner-form { width: 100%; min-width: 100%; }
    .banner-form form { grid-template-columns: 1fr; padding: 20px 15px; }
    .banner-form h3, .banner-form button { grid-column: span 1; }
    .banner-text h1 { font-size: 32px; text-align: center; }
    .dynamic-text-container { font-size: 18px; justify-content: center; }
    .banner-text p { text-align: center; font-size: 15px; }

    /* About Us */
    .about-us { flex-direction: column; gap: 40px; padding: 40px 5%; }
    .about-img, .about-content { flex: 1 1 100%; max-width: 100%; width: 100%; }
    .about-features { grid-template-columns: 1fr; } 
    .experience-badge { right: 10px; bottom: 10px; padding: 15px; }
    .experience-badge span { font-size: 24px; }
	
	
	/* 8. Testimonials Mobile Fix */
	
	/* Mobile Slider Fix */
    .testimonial-slide {
        flex: 0 0 100%; /* Switch back to 1 card per view on mobile */
        max-width: 100%;
    }
	
    .testimonial-card {
        flex: 0 0 85vw; /* Sets width relative to screen size so it perfectly fits phones */
        max-width: 320px;
        padding: 20px;
    }
    .testimonial-text { font-size: 14px; }
    .testimonial-marquee { padding-bottom: 30px; }
    
    /* Shrink the gradient fade on mobile so the text isn't washed out! */
    .testimonial-marquee::after, .testimonial-marquee::before {
        width: 30px; 
    }
}


/* ========================================= */
/* --- WHY CHOOSE US SECTION --- */
/* ========================================= */
.why-us-section {
    background-color: #f8fafc; /* Very light slate to contrast with white sections */
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    /* This automatically handles desktop and mobile column layouts */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

/* Hover Effect: Card lifts up and adds a blue border at the bottom */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--light-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 195, 255, 0.1); /* Light blue circular background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s ease;
}

/* Hover Effect: Icon fills with blue */
.feature-card:hover .feature-icon {
    background: var(--dark-blue);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================= */
/* --- HOW IT WORKS SECTION --- */
/* ========================================= */
.how-it-works-section {
    background: var(--white);
    text-align: center;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
}

/* Horizontal Connecting Line behind the icons */
.process-container::before {
    content: '';
    position: absolute;
    top: 40px; /* Aligns exactly with the middle of the icons */
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e2e8f0; /* Light grey line */
    z-index: 1;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2; /* Sits above the connecting line */
    padding: 0 15px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px dashed var(--light-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 15px var(--white); /* Creates a solid white gap cutting through the grey line */
}

/* Floating Red Number Badge */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--white);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Hover Effect: The dashed border becomes solid blue, and the icon zooms slightly */
.process-step:hover .step-icon-wrapper {
    border-style: solid;
    border-color: var(--dark-blue);
    background: rgba(0, 195, 255, 0.05);
    transform: translateY(-5px);
}

.process-step h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}


/* ========================================= */
/* --- TESTIMONIALS SECTION (Auto-Scroll) --- */
/* ========================================= */

/* ========================================= */
/* --- TESTIMONIALS SECTION (JS Slider) --- */
/* ========================================= */
.testimonials-section {
    background-color: #f8fafc;
    text-align: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.testimonial-slider-container {
    max-width: 1200px; /* Widened from 800px so two cards fit beautifully side-by-side */
    margin: 0 auto;
    overflow: hidden; 
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 50%; /* Changed from 100% to 50% so exactly TWO cards show per view */
    max-width: 50%; /* Changed from 100% to 50% */
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* Focused Spotlight Card Styling */
.testimonial-card {
    width: 100%;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .card-header {
    display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 20px;
}
.user-avatar { width: 70px; height: 70px; border-radius: 50%; border: 3px solid #f1f5f9; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.rating-box { display: flex; gap: 3px; }
.star { font-size: 24px; color: #d1d5db; }
.star.filled { color: #f59e0b; }

.testimonial-text { color: #444; font-size: 18px; line-height: 1.8; font-style: italic; margin-bottom: 30px; }

.testimonial-card .card-footer { width: 100%; border-top: 1px solid #eee; padding-top: 20px; text-align: left; }
.user-name { font-weight: bold; color: var(--dark-blue); font-size: 18px; margin-bottom: 5px; }
.user-meta { color: #888; font-size: 14px; margin: 0; }

/* Mobile Slider Fix */
@media (max-width: 768px) {
   /* ========================================= */
    /* --- MOBILE SLIDER STRICT FIX --- */
    /* ========================================= */
    .testimonial-slide {
        flex: 0 0 100% !important; 
        max-width: 100% !important;
        min-width: 100% !important; /* Forces the slide to take up the full screen width */
    }
    
    .testimonial-card { 
        padding: 20px; /* Slightly smaller padding for phones */
        width: 100%;
    }
    
    .testimonial-text { 
        font-size: 15px; 
    }
    
    .user-avatar { 
        width: 50px; 
        height: 50px; 
    }
}

/* ========================================= */
/* --- CTA SECTION (PROFESSIONAL 2-COL) --- */
/* ========================================= */
.cta-section {
    background: var(--light-blue);
    padding: 80px 5% !important; /* Forces consistent padding */
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px; /* Space between content and (CSS background) image area */
}

/* Placeholder for CSS background image - assuming an image like images/support_rep.jpg exists */
.cta-container::before {
    content: '';
    flex: 0 0 45%; /* Image column size */
    height: 400px;
    background-image: url('images/support_rep.jpg'); /* REPLACE with your actual high-quality person image */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-content {
    flex: 1; /* Content column size */
    text-align: left !important; /* Left aligned for professional flow */
    color: var(--white);
}

.cta-pretitle {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

/* Updated Button Styles for CTA */
.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

/* Phone Button: specified RED, matching overall brand accent */
.cta-phone {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(254, 76, 28, 0.3);
}

.cta-phone:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(254, 76, 28, 0.5);
}

/* Form Button: specified WHITE/outline */
.cta-form {
    background: var(--white);
    color: var(--dark-blue);
    border: 2px solid transparent;
}

.cta-form:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* CTA Icon Styling */
.cta-icon {
    font-size: 18px;
}

/* CTA Mobile Overrides */
@media (max-width: 992px) {
    .cta-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
    .cta-container::before { flex: 0 0 100%; width: 100%; height: 300px; }
    .cta-content { text-align: center !important; }
    .cta-actions { justify-content: center; }
    .cta-content h2 { font-size: 32px; }
}


/* ========================================= */
/* --- HOW IT WORKS MOBILE STRICT FIX --- */
/* ========================================= */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column !important; /* Forces steps to stack vertically */
        align-items: center !important;    /* Centers the stacked steps */
        gap: 50px !important;              /* Adds breathing room between each step */
    }
    
    .process-container::before {
        display: none !important;          /* Hides the desktop horizontal connecting line */
    }
    
    .process-step {
        width: 100% !important;
        max-width: 350px !important;       /* Keeps text tightly centered and readable */
        padding: 0 !important;
    }
}

/* ========================================= */
/* --- BRANDS PAGE GRID --- */
/* ========================================= */
.brands-grid {
    display: grid;
    /* Automatically creates columns that are at least 180px wide */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-grid-item {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 195, 255, 0.15); /* Light blue glow */
    border-color: var(--light-blue);
}

.brand-img-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-grid-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-grid-item h3 {
    color: var(--dark-blue);
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}

/*Kalai CSS update here*/

/*Kalai CSS update here*/


/* ========================================= */
/* --- CONTACT PAGE STYLES --- */
/* ========================================= */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Left Side: Info */
.contact-info-sidebar {
    flex: 0 0 35%;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--dark-blue);
}

.contact-info-sidebar h3 { color: var(--dark-blue); font-size: 26px; margin-bottom: 15px; }
.contact-info-sidebar > p { color: #666; line-height: 1.6; margin-bottom: 30px; font-size: 16px; }

.contact-detail { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-icon { 
    font-size: 24px; background: rgba(0, 195, 255, 0.1); width: 50px; height: 50px; 
    display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0;
}
.contact-detail h4 { color: var(--black); font-size: 16px; margin-bottom: 5px; }
.contact-detail p { color: #555; font-size: 15px; line-height: 1.5; margin: 0; }

/* Right Side: Form */
.contact-form-box {
    flex: 1;
    background: var(--white);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--red);
}

.contact-form-box h3 { color: var(--dark-blue); font-size: 28px; margin-bottom: 25px; }

.standard-form { display: flex; flex-direction: column; gap: 20px; }
.form-group-half { display: flex; gap: 20px; }

.form-group-half input, .form-group-full textarea { 
    width: 100%; padding: 16px; border: 1px solid #d1d5db; border-radius: 6px; 
    font-size: 15px; background-color: #f8fafc; font-family: inherit; transition: all 0.3s ease;
}

.form-group-half input:focus, .form-group-full textarea:focus {
    outline: none; border-color: var(--light-blue); background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.15);
}

.submit-btn {
    background: linear-gradient(135deg, var(--red), #d6380c); color: var(--white); border: none; 
    padding: 18px; border-radius: 6px; cursor: pointer; font-weight: bold; font-size: 16px; 
    text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(254, 76, 28, 0.4); 
    transition: all 0.3s ease; margin-top: 10px;
}

.submit-btn:hover { 
    background: linear-gradient(135deg, #d6380c, var(--red)); transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(254, 76, 28, 0.6); 
}


/* ========================================= */
/* --- CONTACT PAGE MOBILE STRICT FIX --- */
/* ========================================= */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column !important; /* Forces the boxes to stack vertically */
        gap: 40px !important;
        width: 100% !important;
    }

    .contact-info-sidebar,
    .contact-form-box {
        flex: 0 0 100% !important; /* Forces both elements to take full width */
        max-width: 100% !important;
        width: 100% !important;
        padding: 30px 20px !important; /* Shrinks padding slightly to fit small screens */
    }

    .form-group-half {
        flex-direction: column !important; /* Stacks the side-by-side form inputs (Name/Email) */
        gap: 20px !important;
    }
}


/* ========================================= */
/* --- LEGAL & POLICY PAGES --- */
/* ========================================= */
.policy-section {
    background-color: var(--white);
    padding: 60px 5%;
}
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}
.policy-container h2 { color: var(--dark-blue); margin: 30px 0 15px; font-size: 24px; }
.policy-container h3 { color: var(--black); margin: 25px 0 10px; font-size: 20px; }
.policy-container p, .policy-container ul { margin-bottom: 20px; }
.policy-container ul { padding-left: 20px; }
.policy-container li { margin-bottom: 10px; }