/* 
   Quick Flights - Premium Travel Agency Styles
   Palette: Deep Midnight Blue & Gold
*/

:root {
    --primary-color: #0a1f44;
    --primary-light: #162a52;
    --secondary-color: #c5a059;
    /* Gold */
    --secondary-hover: #b08d3e;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f4f6f8;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--secondary-color);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.bg-light {
    background-color: var(--bg-light);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: #000;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    z-index: 1001;
    position: relative;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left i {
    color: #4CAF50;
    /* Trustpilot Green */
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    gap: 1.5rem;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-phone {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Header */
header {
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 90px;
    /* Increased to allow for larger logo */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    /* Large and clear */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.nav-links a:not(.btn):hover {
    color: var(--secondary-color);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-phone {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    /* Height increased for impact */
    height: auto;
    min-height: 100vh;
    /* Static background removed for carousel */
    position: relative;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    padding: 0;
    /* Remove padding */
    color: white;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom effect for premium feel */
    animation: zoomEffect 20s infinite linear;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 31, 68, 0.6), rgba(10, 31, 68, 0.3));
    z-index: 1;
    /* Above slides, below content */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    /* Increased spacing */
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* ... existing code ... */

/* Specific Field Tweaks */
/* Specific Field Tweaks */
.return-container {
    position: relative;
    /* Ensure no overlap */
}

.return-container input {
    /* Push input down to match neighbor label height */
    margin-top: 1.5rem;
}

.radio-toggle {
    position: absolute;
    top: -2px;
    /* Sit roughly where label starts */
    left: 0;
    /* Aligned left */
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    padding: 0;
    align-items: center;
    height: 1.5rem;
    /* Match label area height */
}

.radio-toggle label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    white-space: nowrap;
    margin: 0;
}

.radio-toggle input[type="radio"] {
    accent-color: #f1c40f;
    transform: scale(1.1);
    margin: 0;
}

.btn-yellow {
    background-color: #f1c40f;
    /* Yellow */
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
    background-color: #f39c12;
}

.form-submit-row {
    text-align: right;
    margin-top: 0.5rem;
}

/* Right Column - Info */
.hero-info-column {
    flex: 0.8;
    background: rgba(10, 31, 68, 0.95);
    /* Deep Blue */
    padding: 2rem;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.hero-info-column h3 {
    color: #f1c40f;
    /* Yellow text */
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.usp-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.4;
}

.usp-list i {
    color: #f1c40f;
    margin-top: 3px;
}

.hero-separator {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.feefo-badge {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    line-height: 1.2;
}

.feefo-badge strong {
    font-size: 1.1rem;
}

.privacy-text {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0;
    line-height: 1.3;
}

.privacy-text a {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-widget-container {
        flex-direction: column;
    }

    .dates-row,
    .contact-row,
    .form-row-grid {
        grid-template-columns: 1fr;
        /* Stack all inputs on mobile */
    }

    .radio-toggle {
        position: static;
        margin-bottom: 5px;
    }

    .hero-info-column {
        padding: 1.5rem;
    }
}

.button-group {
    justify-content: flex-end;
}

/* Trust Strip */
.trust-strip {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-text {
    font-weight: 700;
    color: var(--text-dark);
}

.trust-stars {
    color: #00b67a;
    /* Trustpilot Green */
    background: #000;
    /* Starbox bg */
    padding: 2px 5px;
    display: inline-block;
}

.trust-label {
    font-size: 0.85rem;
    color: #666;
}

.atol-box {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.atol-box i {
    color: var(--secondary-color);
}


/* Partner Strip Scrolling */
.partners-strip {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    overflow: hidden;
}

.partners-strip p {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scrolling-logos-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-logos-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
    gap: 4rem;
}

.scrolling-logos-track:hover {
    animation-play-state: paused;
}

.logo-img {
    height: 300px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
    /* filter: grayscale(100%); */
}

.airlinelogo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
        /* Adjust for gap */
    }
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: white;
    border-radius: 0;
    /* Clearer cards */
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
    transition: var(--transition);
    border: 1px solid #eee;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.deal-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.deal-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.deal-tag.red {
    background: #e74c3c;
}

.deal-content {
    padding: 1.2rem;
    text-align: center;
}

.deal-header {
    display: block;
    /* Centered stack */
    margin-bottom: 0.5rem;
}

.deal-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.deal-price {
    display: block;
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.deal-price small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    display: inline-block;
    margin-right: 3px;
}

.deal-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.deal-link {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
}

.deal-link:hover {
    background: var(--secondary-color);
    color: white;
}

/* Why Us / Row Flex */
.row-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.col-half {
    flex: 1;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: white;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.why-content h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.why-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-image {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Features Section (Advantage) */
#features {
    position: relative;
    overflow: hidden;
}

#features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}


/* Classes */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.class-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.class-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.class-badge.gold {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.class-content {
    padding: 2rem;
}

/* Hero Widget (New 2-Column Design) */
.hero-widget-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
}

.hero-widget-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Left Column - Form */
.hero-form-column {
    flex: 2;
    background: rgba(56, 178, 172, 0.25);
    /* Very transparent */
    backdrop-filter: blur(10px);
    /* Increased blur */
    padding: 2rem;
    text-align: left;
    color: white;
}

.form-heading {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.main-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dates-row {
    grid-template-columns: 1.2fr 1.2fr 0.8fr 0.6fr 0.6fr;
}

.contact-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: white;
}

.form-field input,
.form-field select {
    height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    background: white;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
}

.form-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0;
}

.section-contact {
    background: var(--bg-light);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.info-item a {
    color: var(--text-dark);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.office-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.office-hours h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-hours p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.enquiry-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

.form-note i {
    margin-right: 5px;
}

/* Footer */
.footer {
    background: #051024;
    /* Darker than primary */
    color: white;
    padding-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    /* margin-bottom: 1.5rem; */
}

.logo-img-footer {
    height: 100px;
    /* Larger footer logo */
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    opacity: 0.8;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 900;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
    font-weight: 500;
}

.btn-mobile {
    background: var(--bg-light);
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .widget-form {
        flex-direction: column;
    }

    .widget-row {
        flex-direction: column;
        gap: 1rem;
    }

    .row-flex {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    /* Hide top bar on mobile usually */
    header {
        top: 0;
        height: 80px;
    }

    .logo-img {
        height: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trust-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .widget-tabs button {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section (New Why Us) */
.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.text-teal {
    color: #0f766e;
    font-family: inherit;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.about-checklist i {
    color: #0f766e;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f766e;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #f0fdfa;
    color: #0f766e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.badge-text strong {
    font-size: 1.1rem;
    color: #333;
    display: block;
}

.badge-text span {
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-main-image {
        height: 400px;
    }

    .about-badge {
        right: 0;
    }
}