:root {
    --primary-color: #0d47a1;
    --primary-light: #1565c0;
    --primary-dark: #0a1f44;
    --secondary-color: #e53935;
    --accent-color: #ffb300;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --light-bg: #f8fbff;
    --white: #ffffff;
    --border-color: #eef2f6;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(13, 71, 161, 0.1);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    --gradient-accent: linear-gradient(135deg, #e53935 0%, #ff5252 100%);
    --gradient-why: linear-gradient(135deg, #0d47a1 0%, #0a1f44 100%);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.6rem;
}

.section-padding {
    padding: 60px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {

    h1,
    .page-banner h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Responsive Grid System */
.grid-2,
.grid-3 {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
}

.top-bar i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.top-bar a {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }

    .top-bar-contact {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        display: none;
        /* Hide social links on mobile top-bar to keep it clean */
    }
}

.top-bar-contact a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-contact a:hover {
    color: var(--accent-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.logo:hover a {
    transform: scale(1.02);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        height: 55px;
    }
}

.logo:hover img {
    transform: scale(1.02);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, var(--primary-color), #1a5ac7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 250px;
    display: none;
    border-top: 3px solid var(--primary-color);
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

/* Multi-column for Network Dropdown */
.network-dropdown {
    min-width: 600px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .network-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.network-dropdown li a {
    padding: 8px 15px;
    border-bottom: none;
    font-size: 0.9rem;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    margin: 5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    color: var(--white);
}

.cta-outline {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.cta-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

/* Responsive Grid Utilities */
.grid-container {
    display: grid;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar div {
        margin: 0 !important;
    }
}

/* Mobile Nav Fixes */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bannerimg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 45px;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner Page Banner */
.page-banner {
    position: relative;
    padding: 120px 0;
    /* Adjust vertical space for better image visibility */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Use scroll for better mobile rendering */
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.95));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    font-size: 4.5rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.banner-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    display: block;
    font-weight: 400;
}

.breadcrumb {
    font-size: 1.1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.pricing-wrapper {
    margin: 11px auto;
    display: block;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

/* Premium Header Styling */
.pricing-table thead {
    background: var(--primary-dark);
}

.pricing-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 22px 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-align: left;
    white-space: nowrap;
    /* Prevent header wrapping */
    position: relative;
}

/* Sticky Header Effect (Optional, works best if parent has height constraint, keeping simple for now) */
/* .pricing-table th { position: sticky; top: 0; z-index: 10; } */

.pricing-table td {
    padding: 20px 25px;
    color: var(--text-color);
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f4f8;
    transition: var(--transition);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Zebra Striping & Hover */
.pricing-table tr:nth-child(even) {
    background-color: #f8fbff;
    /* Very subtle blue tint */
}

.pricing-table tr:hover {
    background-color: #e3f2fd;
    /* Light highlight on hover */
    transform: scale(1);
    /* Ensure no jitter */
}

.pricing-table tr:hover td {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Highlight the Route column */
.pricing-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {

    .pricing-table th,
    .pricing-table td {
        padding: 15px 15px;
        font-size: 0.85rem;
    }
}

/* Info Card Styling */
.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.info-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Enquiry Form Section */
.enquiry-form-section {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 60px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 18, 29, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 20px;
    display: block;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Redesign */
/* Why Choose Us Redesign */
.why-choose-us {
    background: var(--gradient-why);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 120px 0;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.2) 0%, transparent 70%);
    filter: blur(50px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    z-index: -1;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), transparent);
}

.why-item i {
    font-size: 3.2rem;
    /* Increased for better visibility */
    color: var(--accent-color);
    margin-bottom: 25px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.why-item:hover i {
    transform: rotateY(180deg);
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.why-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.why-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding: 30px 0;
    font-size: 0.95rem;
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-header h4 {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 30px;
    background: var(--light-bg);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 20px 30px 30px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-header {
    background: var(--light-bg);
}

/* List/Bullet Point Alignment */
.styled-list {
    margin: 20px 0;
}

.styled-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        box-shadow: var(--shadow);
        transition: 0.3s ease;
        padding: 80px 0 30px;
        z-index: 999;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        border-top: none;
        background: #f9f9f9;
        width: 100%;
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .network-dropdown {
        min-width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-grid {
        gap: 20px;
    }

    .why-item {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .network-dropdown {
        grid-template-columns: 1fr;
    }

    .top-bar a {
        font-size: 0.8rem;
    }
}
/* --- Global Layout Standard --- */
.content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.main-content {
    min-width: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

/* --- Benefit Items Standard --- */
.benefit-item {
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- FAQ Standard --- */
.faq-list {
    margin-top: 30px;
}

.faq-item-simple {
    margin-bottom: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.faq-item-simple summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--primary-dark);
}

.faq-item-simple p {
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-muted);
}
/* Custom class for justify text */
.justify-text {
  text-align: justify;
  line-height: 1.6;
}

/* Responsive (optional but clean) */
@media (max-width: 600px) {
  .justify-text {
    text-align: justify;
  }
}

/* Responsive (optional but clean) */
@media (max-width: 600px) {
  .mobile-conta{
  background: var(--light-bg); 
  border-radius: 20px;
  }
}
       header {
    padding: 0 !important;
}


/* SECTION */
#enquiry {
    background: #f8faff;
}

/* FORM WRAPPER (DESKTOP SAME) */
.form-wrapper {
    background: linear-gradient(135deg, #0a1f44 0%, #1a3a6e 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

/* HEADER */
.form-header {
    text-align: center;
    margin-bottom: 45px;
}

.form-header h2 {
    color: #fff;
    margin-bottom: 15px;
}

.form-header p {
    color: rgba(255,255,255,0.8);
}

/* ICON */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255,193,7,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

/* FORM */
.form-group label {
    color: #e53935;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.form-group i {
    color: var(--accent-color);
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #958686;
    outline: none;
    transition: 0.3s;
}

.form-group textarea {
    min-height: 120px;
}

/* BUTTON */
.btn-center {
    text-align: center;
}

.btn-center button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9800 100%);
    color: var(--primary-dark);
    padding: 15px 15px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
}

/* FEATURES */
.features {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 40px;
    color: rgba(97, 91, 91, 0.7);
    flex-wrap: wrap;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

    .form-wrapper {
        padding: 15px 10px;
        border-radius: 12px;
    }

    /* HEADER COMPACT */
    .form-header {
        margin-bottom: 10px;
    }

    .form-header h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .form-header p {
        display: none; /* remove extra text */
    }

    .icon-box {
        display: none; /* remove icon */
    }

    /* GRID TIGHT */
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    /* LABEL SMALL */
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    /* INPUT SUPER COMPACT */
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    /* TEXTAREA REMOVE (BIG SPACE SAVER) */
    .form-group textarea {
        display: flex;
    }

    /* BUTTON FULL WIDTH */
    .btn-center button {
        width: 100%;
        padding: 10px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* FEATURES REMOVE */
    .features {
        display: none;
    }
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 769px) {

    /* Reduce form wrapper padding and border-radius */
    .form-wrapper {
        padding: 40px; /* was 60px */
        border-radius: 20px; /* was 30px */
    }

    /* Reduce space below header */
    .form-header {
        margin-bottom: 30px; /* was 45px */
    }

    /* Reduce gap in grids */
    .grid-3,
    .grid-2 {
        gap: 15px; /* was 25px */
        margin-bottom: 15px; /* was 25px */
    }

    /* Reduce features section spacing */
    .features {
        margin-top: 20px; /* was 35px */
        gap: 25px; /* was 40px */
    }
}
