:root {
    --primary-color: #102858;
    --secondary-color: #e0491c;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar .contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h6 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer a {
    color: #ffffffb3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer .contact-info p {
    margin-bottom: 10px;
    color: #ffffffb3;
}

.footer .contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer .legal-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.footer .legal-links a {
    font-size: 14px;
}

.footer .disclaimer {
    border-top: 1px solid #ffffff33;
    margin-top: 40px;
    padding-top: 30px;
    font-size: 13px;
    color: #ffffffb3;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #ffffff33;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ffffffb3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar .contact-info {
        justify-content: center;
        text-align: center;
    }

    .footer .legal-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .top-bar .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer .legal-links {
        grid-template-columns: 1fr;
    }

    .floating-phone {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .floating-phone i {
        font-size: 20px;
    }
}

/* Utility Classes */
.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #c03d15;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 73, 28, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer Enhanced Styles */
.footer {
    background: linear-gradient(135deg, #0a1a3a 0%, #102858 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0491c, #ff6b3d, #e0491c);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #e0491c;
    border-radius: 2px;
}

.footer-subtitle {
    color: #e0491c;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.company-description p {
    color: #b0b9d4;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Items */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-box {
    width: 36px;
    height: 36px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0491c;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
    background: #e0491c;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-item .detail {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    color: #b0b9d4;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item .value {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.contact-item .value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .value a:hover {
    color: #e0491c;
}

/* Registration Badge */
.registration-badge {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: #b0b9d4;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-badge i {
    color: #e0491c;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.links-category {
    color: #e0491c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b9d4;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 10px;
    color: #e0491c;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #b0b9d4;
}

.trust-item i {
    color: #28a745;
    font-size: 14px;
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.legal-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-link-card i {
    font-size: 18px;
    color: #e0491c;
    transition: all 0.3s ease;
}

.legal-link-card span {
    color: #b0b9d4;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-link-card:hover {
    background: #e0491c;
    border-color: #e0491c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 73, 28, 0.3);
}

.legal-link-card:hover i {
    color: #ffffff;
}

.legal-link-card:hover span {
    color: #ffffff;
}

/* Certification Badges */
.certification-badges {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.8;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badges-grid .badge {
    background: rgba(224, 73, 28, 0.15);
    color: #e0491c;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(224, 73, 28, 0.3);
}

/* Disclaimer Wrapper */
.disclaimer-wrapper {
    margin: 40px 0 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid #e0491c;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.disclaimer-icon {
    background: rgba(224, 73, 28, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0491c;
    font-size: 18px;
    flex-shrink: 0;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content strong {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.disclaimer-content p {
    color: #b0b9d4;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.copyright {
    color: #b0b9d4;
    font-size: 13px;
    margin-bottom: 0;
}

.copyright strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: #b0b9d4;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    color: #e0491c;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom-links {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .disclaimer-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .badges-grid {
        justify-content: flex-start;
    }

    .contact-item {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links a {
        display: inline-block;
        margin: 5px 10px 5px 0;
    }

    .footer-bottom-links .separator {
        display: none;
    }
}

/* Animation */
.footer-widget {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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






/* Floating Buttons Container */
.floating-phone,
.floating-whatsapp {
    position: fixed;
    left: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

/* Phone Button */
.floating-phone {
    bottom: 30px;
    background-color: #28a745;
}

/* WhatsApp Button */
.floating-whatsapp {
    bottom: 100px;
    background-color: #25D366;
}

/* Hover Effects */
.floating-phone:hover,
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
    color: white;
}

/* Icons */
.floating-phone i,
.floating-whatsapp i {
    font-size: 24px;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .floating-phone,
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        left: 15px;
    }

}

.nav-menu li.active a {
    color: #ff6600;
    /* Highlight color */
    font-weight: bold;
}

/* Contact Us Page Specific Styles */
.contact-banner {
    background: linear-gradient(rgba(16, 40, 88, 0.9), rgba(16, 40, 88, 0.9)),
    url('{{ asset("img/contact-banner.jpg") }}');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.contact-banner .overlay-bg {
    display: none;
}

.contact-banner-content {
    text-align: center;
}

.contact-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: contactFadeInDown 0.8s ease;
}

.contact-banner-content .contact-breadcrumb {
    font-size: 16px;
    animation: contactFadeInUp 0.8s ease;
}

.contact-banner-content .contact-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-banner-content .contact-breadcrumb a:hover {
    color: #e0491c;
}

.contact-banner-content .lnr-arrow-right {
    margin: 0 10px;
    font-size: 12px;
}

/* Contact Info Cards */
.contact-info-area {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0491c, #ff8a5c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 40, 88, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #e0491c;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #e0491c;
    color: white;
    transform: rotateY(360deg);
}

.contact-card h3 {
    color: #102858;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card .contact-value {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-card .contact-value a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card .contact-value a:hover {
    color: #e0491c;
}

.contact-card .contact-label {
    color: #e0491c;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Business Hours Section */
.hours-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hours-header {
    text-align: center;
    margin-bottom: 30px;
}

.hours-header h2 {
    color: #102858;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hours-header p {
    color: #4a5568;
    font-size: 16px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: #102858;
    transform: translateY(-2px);
}

.hours-item:hover .day,
.hours-item:hover .time {
    color: white;
}

.day {
    color: #102858;
    font-weight: 600;
    font-size: 16px;
}

.time {
    color: #e0491c;
    font-weight: 500;
    font-size: 16px;
}

/* Map Section */
.map-section {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Area */
.contact-form-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #102858 0%, #1e3a7a 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-area::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-form-area::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 50%;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #102858;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-header p {
    color: #4a5568;
    font-size: 18px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #102858;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-group label i {
    color: #e0491c;
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(16, 40, 88, 0.2);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #e0491c;
    box-shadow: 0 0 0 3px rgba(224, 73, 28, 0.1);
    background: white;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #e0491c;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #102858;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 73, 28, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Alert Messages */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #dc3545;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-action-btn:hover {
    background: #e0491c;
    color: white;
    transform: translateY(-2px);
}

/* Compliance Badge */
.compliance-badge {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.compliance-badge i {
    color: #e0491c;
    margin-right: 5px;
}

/* Animations */
@keyframes contactFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 992px) {
    .contact-banner {
        padding: 80px 0;
    }

    .contact-banner-content h1 {
        font-size: 42px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 60px 0;
    }

    .contact-banner-content h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hours-section {
        padding: 30px 20px;
    }

    .hours-header h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-banner {
        padding: 40px 0;
    }

    .contact-banner-content h1 {
        font-size: 28px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .contact-card .contact-value {
        font-size: 16px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .form-wrapper {
        padding: 20px 15px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .map-container {
        height: 250px;
    }
}

/* Cookie Policy Page Specific Styles */

.cookie-banner {
    background: linear-gradient(rgba(16, 40, 88, 0.9), rgba(16, 40, 88, 0.9)),
    url('{{ asset("img/contact-banner.jpg") }}');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.cookie-banner .overlay-bg {
    display: none;
}

.cookie-banner-content {
    text-align: center;
}

.cookie-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: cookieFadeInDown 0.8s ease;
}

.cookie-banner-content .cookie-breadcrumb {
    font-size: 16px;
    animation: cookieFadeInUp 0.8s ease;
}

.cookie-banner-content .cookie-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-banner-content .cookie-breadcrumb a:hover {
    color: #e0491c;
}

.cookie-banner-content .lnr-arrow-right {
    margin: 0 10px;
    font-size: 12px;
}

/* Cookie Content Area */
.cookie-area {
    padding: 80px 0;
    background: #f8fafc;
}

.cookie-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cookie-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0491c;
}

.cookie-header h2 {
    color: #102858;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-header p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

/* Cookie Intro */
.cookie-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(16, 40, 88, 0.1);
    position: relative;
    overflow: hidden;
}

.cookie-intro::before {
    content: '\f563';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 80px;
    color: rgba(224, 73, 28, 0.1);
}

.cookie-intro h3 {
    color: #102858;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-intro h3 i {
    color: #e0491c;
    font-size: 28px;
}

.cookie-intro p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Cookie Section */
.cookie-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #e0491c;
    transition: all 0.3s ease;
}

.cookie-section:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(16, 40, 88, 0.1);
}

.cookie-section h3 {
    color: #102858;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-section h3 i {
    color: #e0491c;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-section p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Cookie Grid */
.cookie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.cookie-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 40, 88, 0.1);
}

.cookie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(224, 73, 28, 0.15);
    border-color: #e0491c;
}

.cookie-icon {
    width: 70px;
    height: 70px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #e0491c;
    transition: all 0.3s ease;
}

.cookie-card:hover .cookie-icon {
    background: #e0491c;
    color: white;
    transform: rotateY(360deg);
}

.cookie-card h4 {
    color: #102858;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Cookie Control Box */
.cookie-control-box {
    background: #102858;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-control-icon {
    width: 80px;
    height: 80px;
    background: rgba(224, 73, 28, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #e0491c;
}

.cookie-control-content {
    flex: 1;
}

.cookie-control-content h4 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-control-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cookie-control-btn {
    background: #e0491c;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-control-btn:hover {
    background: white;
    color: #102858;
    transform: translateY(-2px);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: #102858;
    color: white;
}

.cookie-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(16, 40, 88, 0.1);
    color: #4a5568;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: rgba(224, 73, 28, 0.05);
}

/* Browser Settings */
.browser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.browser-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 40, 88, 0.1);
}

.browser-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 73, 28, 0.15);
    border-color: #e0491c;
}

.browser-item i {
    font-size: 30px;
    color: #e0491c;
    margin-bottom: 10px;
}

.browser-item span {
    color: #102858;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

/* Info Box */
.cookie-info-box {
    background: #e8f4fd;
    border: 1px solid #102858;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-info-icon {
    width: 40px;
    height: 40px;
    background: #102858;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.cookie-info-content p {
    color: #102858;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Animations */
@keyframes cookieFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes cookieFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 992px) {
    .cookie-banner {
        padding: 80px 0;
    }

    .cookie-banner-content h1 {
        font-size: 42px;
    }

    .cookie-container {
        padding: 40px;
    }

    .cookie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .browser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 60px 0;
    }

    .cookie-banner-content h1 {
        font-size: 32px;
    }

    .cookie-container {
        padding: 30px 20px;
    }

    .cookie-header h2 {
        font-size: 28px;
    }

    .cookie-section {
        padding: 25px;
    }

    .cookie-grid {
        grid-template-columns: 1fr;
    }

    .cookie-control-box {
        flex-direction: column;
        text-align: center;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
    }

    .browser-grid {
        grid-template-columns: 1fr;
    }

    .cookie-info-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 40px 0;
    }

    .cookie-banner-content h1 {
        font-size: 28px;
    }

    .cookie-container {
        padding: 20px 15px;
    }

    .cookie-section h3 i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}



/* Refund Policy Page Specific Styles */
.refund-banner {
    background: linear-gradient(rgba(16, 40, 88, 0.9), rgba(16, 40, 88, 0.9)),
    url('{{ asset("img/refund-banner.jpg") }}');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.refund-banner .overlay-bg {
    display: none;
}

.refund-banner-content {
    text-align: center;
}

.refund-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: refundFadeInDown 0.8s ease;
}

.refund-banner-content .refund-breadcrumb {
    font-size: 16px;
    animation: refundFadeInUp 0.8s ease;
}

.refund-banner-content .refund-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.refund-banner-content .refund-breadcrumb a:hover {
    color: #e0491c;
}

.refund-banner-content .lnr-arrow-right {
    margin: 0 10px;
    font-size: 12px;
}

/* Refund Content Area */
.refund-area {
    padding: 80px 0;
    background: #f8fafc;
}

.refund-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.refund-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0491c;
}

.refund-header h2 {
    color: #102858;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.refund-header p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

/* Refund Intro */
.refund-intro {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(16, 40, 88, 0.1);
    position: relative;
    overflow: hidden;
}

.refund-intro::before {
    content: '\f3e5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 80px;
    color: rgba(224, 73, 28, 0.1);
}

.refund-intro h3 {
    color: #102858;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refund-intro h3 i {
    color: #e0491c;
    font-size: 28px;
}

.refund-intro p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

/* Refund Section */
.refund-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #e0491c;
    transition: all 0.3s ease;
}

.refund-section:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(16, 40, 88, 0.1);
}

.refund-section h3 {
    color: #102858;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.refund-section h3 i {
    color: #e0491c;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refund-section p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Refund Grid */
.refund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.refund-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 40, 88, 0.1);
}

.refund-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(224, 73, 28, 0.15);
    border-color: #e0491c;
}

.refund-card.refundable {
    border-top: 4px solid #e0491c;
}

.refund-card.non-refundable {
    border-top: 4px solid #dc3545;
}

.refund-icon {
    width: 60px;
    height: 60px;
    background: rgba(224, 73, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #e0491c;
}

.refund-card h4 {
    color: #102858;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.refund-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Warning Box */
.refund-warning-box {
    background: #fff3e0;
    border: 1px solid #e0491c;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.refund-warning-icon {
    width: 50px;
    height: 50px;
    background: #e0491c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.refund-warning-content h4 {
    color: #102858;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.refund-warning-content p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Steps */
.refund-steps {
    margin: 30px 0;
}

.refund-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e0491c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: #102858;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: #4a5568;
    font-size: 15px;
    margin-bottom: 0;
}

/* Info Box */
.refund-info-box {
    background: #e8f4fd;
    border: 1px solid #102858;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.refund-info-icon {
    width: 40px;
    height: 40px;
    background: #102858;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.refund-info-content p {
    color: #102858;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Animations */
@keyframes refundFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes refundFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 992px) {
    .refund-banner {
        padding: 80px 0;
    }

    .refund-banner-content h1 {
        font-size: 42px;
    }

    .refund-container {
        padding: 40px;
    }

    .refund-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .refund-banner {
        padding: 60px 0;
    }

    .refund-banner-content h1 {
        font-size: 32px;
    }

    .refund-container {
        padding: 30px 20px;
    }

    .refund-header h2 {
        font-size: 28px;
    }

    .refund-section {
        padding: 25px;
    }

    .refund-warning-box {
        flex-direction: column;
        text-align: center;
    }

    .refund-step {
        flex-direction: column;
        text-align: center;
    }

    .refund-info-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .refund-banner {
        padding: 40px 0;
    }

    .refund-banner-content h1 {
        font-size: 28px;
    }

    .refund-container {
        padding: 20px 15px;
    }

    .refund-section h3 i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}
