/* ==================== VARIABLES ==================== */
:root {
    --primary-color: #011334;
    --secondary-color: #f9c318;
    --bg-color: #bbbcc1;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f7;
    --gray-medium: #86868b;
    --gray-dark: #1d1d1f;
    
    --gradient-primary: linear-gradient(135deg, #011334 0%, #023e8a 100%);
    --gradient-secondary: linear-gradient(135deg, #f9c318 0%, #ffd700 100%);
    
    --shadow-sm: 0 2px 8px rgba(1, 19, 52, 0.08);
    --shadow-md: 0 4px 16px rgba(1, 19, 52, 0.12);
    --shadow-lg: 0 8px 32px rgba(1, 19, 52, 0.16);
    --shadow-xl: 0 16px 48px rgba(1, 19, 52, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ==================== REUSABLE CLASSES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__description {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-secondary);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn--large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scroll-header {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}

.nav__logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-md);
    font-weight: 600;
}

.nav__phone:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ==================== QUICK BOOKING FAB ==================== */
.quick-booking-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.quick-booking-fab:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.quick-booking-fab i {
    font-size: 24px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
    }
}

/* ==================== HERO SECTION (PERFECT ALIGNMENT) ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8eb 100%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    animation: fadeInUp 0.8s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero__badge i {
    color: var(--secondary-color);
    font-size: 16px;
}

.hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero__title-highlight {
    display: block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero__description {
    font-size: 18px;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.hero__stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__stat-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.hero__stat-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat-content p {
    font-size: 13px;
    color: var(--gray-medium);
    font-weight: 500;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__trust-item {
    display: flex;
    gap: 4px;
}

.hero__trust-item i {
    color: var(--secondary-color);
    font-size: 18px;
}

.hero__trust p {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

/* Hero Image Section */
.hero__image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.hero__image-main {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero__image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__image-badge i {
    font-size: 32px;
    color: var(--secondary-color);
}

.hero__badge-content {
    display: flex;
    flex-direction: column;
}

.hero__badge-label {
    font-size: 12px;
    color: var(--gray-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__badge-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero__image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero__decoration {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero__decoration i {
    font-size: 20px;
    color: var(--secondary-color);
}

.hero__decoration--1 {
    top: 40px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.hero__decoration--2 {
    bottom: 140px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.hero__bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== QUICK BOOKING SECTION ==================== */
.quick-booking {
    padding: 40px 0;
    background: var(--primary-color);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.quick-booking__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.quick-booking__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.quick-booking__content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.quick-booking__content p {
    font-size: 16px;
    color: var(--gray-medium);
}

/* ==================== SERVICES SECTION (UPDATED WITH IMAGES) ==================== */
.services {
    padding: 100px 0;
    background: var(--gray-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.service__card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service__card--featured {
    border: 3px solid var(--secondary-color);
}

.service__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service__image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service__card:hover .service__image img {
    transform: scale(1.1);
}

.service__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 19, 52, 0.8), rgba(249, 195, 24, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.service__card:hover .service__image-overlay {
    opacity: 1;
}

.service__image-overlay i {
    font-size: 48px;
    color: var(--white);
}

.service__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service__description {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

.service__features i {
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-base);
}

.service__link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.service__link i {
    transition: var(--transition-base);
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 80px 0;
    background: var(--primary-color);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature__item {
    text-align: center;
    color: var(--white);
}

.feature__icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.feature__item:hover .feature__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature__item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature__item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ==================== COVERAGE SECTION ==================== */
.coverage {
    padding: 100px 0;
}

.coverage__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.coverage__map {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.coverage__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverage__map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 19, 52, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage__pin {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coverage__areas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coverage__area-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition-base);
}

.coverage__area-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.coverage__area-card i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.coverage__area-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.coverage__area-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coverage__area-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 500;
}

.coverage__area-card li i {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
}

.coverage__address {
    display: flex;
    justify-content: center;
}

.coverage__address-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    max-width: 700px;
    width: 100%;
}

.coverage__address-card i {
    font-size: 48px;
    color: var(--secondary-color);
}

.coverage__address-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.coverage__address-content p {
    font-size: 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== GALLERY SECTION (MODERN REDESIGN) ==================== */
.gallery {
    padding: 100px 0;
    background: var(--gray-light);
}

.gallery__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery__main {
    width: 100%;
}

.gallery__featured {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__featured:hover {
    transform: scale(1.01);
}

.gallery__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__featured:hover img {
    transform: scale(1.05);
}

.gallery__featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(1, 19, 52, 0.95), transparent);
    color: var(--white);
}

.gallery__featured-overlay h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.gallery__featured-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 19, 52, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay i {
    font-size: 48px;
    color: var(--secondary-color);
}

.gallery__cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial__card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.testimonial__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial__rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial__rating i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 24px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.testimonial__author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonial__author span {
    font-size: 14px;
    color: var(--gray-medium);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.contact__info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact__info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact__info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact__info-content a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.contact__info-content a:hover {
    text-decoration: underline;
}

.contact__info-content p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 4px;
}

.contact__form-wrapper {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__form-wrapper h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact__form-wrapper > p {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 24px;
}

.form__group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form__group label i {
    color: var(--secondary-color);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    transition: var(--transition-base);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    background: var(--white);
    border-color: var(--secondary-color);
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}


/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer__logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer__description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition-base);
}

.footer__links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact a:hover {
    color: var(--secondary-color);
}
/* ==================== FOOTER BOTTOM (UPDATED) ==================== */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__designer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__designer span {
    color: rgba(255, 255, 255, 0.6);
}

.footer__designer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition-base);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    background: rgba(249, 195, 24, 0.1);
}

.footer__designer-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer__designer-link i {
    font-size: 16px;
}

/* Responsive Footer Bottom */
@media screen and (max-width: 768px) {
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer__designer {
        flex-direction: column;
        gap: 4px;
    }
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__image-main {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero__main-img {
        height: 450px;
    }

    .coverage__content {
        grid-template-columns: 1fr;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 30px 30px;
        transition: var(--transition-base);
        z-index: 1001;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .nav__toggle {
        display: block;
    }

    .nav__phone span {
        display: none;
    }

    .quick-booking__card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    /* .hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    } */

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service__features {
        grid-template-columns: 1fr;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .gallery__featured {
        height: 350px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    

    .quick-booking-fab span {
        display: none;
    }

    .quick-booking-fab {
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .hero__decoration {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section__title {
        font-size: 28px;
    }

    .hero__title {
        font-size: 32px;
    }

    .service__card {
        padding: 20px;
    }

    .coverage__address-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .contact__form-wrapper {
        padding: 30px 20px;
    }

    .gallery__featured {
        height: 280px;
    }

    .gallery__item {
        height: 240px;
    }
}