/* ===================================
   WELLCOME VILLARICCA - STYLE.CSS
   =================================== */

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

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --darker: #1a1a1a;
    --gray-dark: #222;
    --gray: #333;
    --gray-light: #888;
    --white: #fff;
    --yellow: #FFC107;
    --yellow-dark: #FFA000;
    --pink: #E91E63;
    --pink-dark: #C2185B;
    --blue: #2196F3;
    --blue-dark: #1976D2;
    --green: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: var(--darker);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gray);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

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

.top-bar-info span,
.top-bar-info i {
    color: #ccc;
}

.top-bar-info i {
    color: var(--yellow);
    margin-right: 5px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social span {
    color: #ccc;
    margin-right: 5px;
}

.top-bar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.top-bar-social a:nth-child(2) { background: #1877F2; }
.top-bar-social a:nth-child(3) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-bar-social a:nth-child(4) { background: var(--green); }

.top-bar-social a:hover {
    transform: translateY(-2px);
}

/* HEADER */
.header {
    background: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo a {
    display: block;
}

.logo-text {
    font-family: 'Poppins', cursive;
    font-size: 36px;
    font-weight: 800;
    color: var(--pink);
    font-style: italic;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.logo-tagline {
    font-size: 9px;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 500;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--yellow);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}

.btn-phone {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #121212 0%, #181818 50%, #101010 100%);
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.96) 24%, rgba(10,10,10,0.78) 52%, rgba(10,10,10,0.28) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-tags {
    display: flex;
    gap: 12px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-yellow {
    color: var(--yellow);
}

.hero-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn span small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.btn i {
    font-size: 18px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-pink {
    background: var(--pink);
    color: var(--white);
}

.btn-pink:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
}

.btn-dark {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-dark:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.couriers {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.courier-logo {
    background: var(--white);
    color: var(--black);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    min-width: 60px;
    line-height: 1.1;
}

/* SERVICES */
.services {
    padding: 80px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--darker);
    border-radius: 16px;
    padding: 35px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.service-yellow::before { background: var(--yellow); }
.service-pink::before { background: var(--pink); }
.service-blue::before { background: var(--blue); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-yellow:hover { border-color: var(--yellow); }
.service-pink:hover { border-color: var(--pink); }
.service-blue:hover { border-color: var(--blue); }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-yellow .service-icon { background: rgba(255,193,7,0.15); color: var(--yellow); }
.service-pink .service-icon { background: rgba(233,30,99,0.15); color: var(--pink); }
.service-blue .service-icon { background: rgba(33,150,243,0.15); color: var(--blue); }

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-yellow h3 { color: var(--yellow); }
.service-pink h3 { color: var(--pink); }
.service-blue h3 { color: var(--blue); }

.service-card p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 14px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    padding: 8px 0;
    color: #ddd;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    font-size: 12px;
}

.service-yellow .service-list i { color: var(--yellow); }
.service-pink .service-list i { color: var(--pink); }
.service-blue .service-list i { color: var(--blue); }

.btn-card {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-card.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-card.btn-pink { background: var(--pink); color: white; }
.btn-card.btn-blue { background: var(--blue); color: white; }

/* FEATURES */
.features {
    padding: 50px 0;
    background: var(--darker);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.feature-content p {
    font-size: 12px;
    color: #aaa;
}

/* BOOKING */
.booking {
    padding: 80px 0;
    background: var(--black);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 25px;
}

.booking-form-wrapper {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.booking-form-wrapper h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.booking-subtitle {
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 16px;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    resize: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #777;
}

.btn-submit {
    background: var(--pink);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-submit:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.booking-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,193,7,0.15);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.step-content p {
    font-size: 13px;
    color: #aaa;
}

.booking-cta {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=600&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,0.7);
}

.booking-cta h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.booking-cta p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 14px;
}

.booking-cta .btn {
    align-self: center;
    padding: 12px 28px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: var(--darker);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.stars {
    color: var(--yellow);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 14px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--yellow);
    width: 25px;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 60px 0 0;
    border-top: 1px solid var(--gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col .logo-text {
    font-size: 32px;
}

.footer-description {
    color: #aaa;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-list li {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-list i {
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-links li {
    display: block;
    padding: 4px 0;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-map iframe {
    filter: invert(0.9) hue-rotate(180deg);
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #777;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #777;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: var(--green);
    color: white;
    padding: 10px 15px 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* INNER PAGE STYLES */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1200&q=80');
    background-size: cover;
    opacity: 0.15;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 1px;
}

.breadcrumb {
    background: var(--darker);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
}

.breadcrumb-list a {
    color: var(--yellow);
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.content-section h2 .text-yellow,
.content-section h2 .text-pink,
.content-section h2 .text-blue {
    display: block;
}

.text-pink { color: var(--pink); }
.text-blue { color: var(--blue); }

.content-section p {
    color: #ccc;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}

.service-detail {
    background: var(--darker);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 30px;
    border-left: 5px solid;
}

.service-detail.service-yellow { border-left-color: var(--yellow); }
.service-detail.service-pink { border-left-color: var(--pink); }
.service-detail.service-blue { border-left-color: var(--blue); }

.service-detail h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-detail.service-yellow h3 { color: var(--yellow); }
.service-detail.service-pink h3 { color: var(--pink); }
.service-detail.service-blue h3 { color: var(--blue); }

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.service-detail-item {
    background: var(--gray-dark);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-detail-item i {
    font-size: 32px;
    margin-bottom: 10px;
}

.service-yellow .service-detail-item i { color: var(--yellow); }
.service-pink .service-detail-item i { color: var(--pink); }
.service-blue .service-detail-item i { color: var(--blue); }

.service-detail-item h4 {
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}

.service-detail-item p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--pink), #1a1a2e);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.about-image h2 {
    font-size: 64px;
    color: var(--yellow);
    margin: 0;
}

.about-image p {
    font-size: 18px;
    margin: 0;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--darker);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--yellow);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #aaa;
}

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

.contact-info-box {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.contact-info-box h3 {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
    color: #ddd;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list i {
    color: var(--yellow);
    font-size: 20px;
    width: 25px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-list strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-info-list span {
    font-size: 13px;
    color: #aaa;
}

.contact-form-box {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.contact-form-box h3 {
    color: var(--pink);
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.full-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 30px;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        padding: 20px;
        border-bottom: 1px solid var(--gray);
    }
    .nav-menu.active ul {
        flex-direction: column;
        gap: 15px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .header-phone {
        display: none;
    }
    .hero::before {
        width: 100%;
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        font-size: 11px;
        gap: 10px;
    }
    .top-bar-info span:first-child {
        display: none;
    }
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
    .whatsapp-float .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        padding: 12px;
        bottom: 20px;
        right: 20px;
    }
    .service-detail {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
    }
    .courier-logo {
        font-size: 10px;
        padding: 6px 10px;
        min-width: 50px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .services,
    .testimonials,
    .booking,
    .content-section {
        padding: 50px 0;
    }
}
