/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0EA5E9;
    --secondary-color: #0284C7;
    --whatsapp-color: #25D366;
    --beige-color: #E0F2FE;
    --dark-green: #0369A1;
    --text-dark: #1E293B;
    --text-light: #475569;
    --white: #FFFFFF;
    --light-green: #E0F7FA;
    --water-blue: #06B6D4;
    --ocean-blue: #0C4A6E;
    --sky-blue: #BAE6FD;
}

html {
    scroll-behavior: smooth;
}

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

/* Prevent layout shift from fonts */
@font-face {
    font-family: 'Cairo';
    font-display: swap;
}

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

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

.logo-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-text p {
    color: var(--white);
    font-size: 12px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.9;
}

.nav-menu a.active::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #FFD700;
}

@media (max-width: 768px) {
    .nav-menu a.active::before {
        display: none;
    }
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-right: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: var(--text-dark);
    display: block;
    padding: 12px 20px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.btn-order-now {
    background: var(--dark-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--white) 100%);
    padding: 60px 0;
}

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

.hero-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 1.3em;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    min-height: 1.3em;
}

.features-list {
    list-style: none;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    min-height: 180px;
}

.features-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--secondary-color);
    font-weight: 600;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.availability {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 150px;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.btn-call span {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

.hero-image {
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.medal-icon::before {
    content: '🏆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.truck-icon-small {
    width: 80px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
}

.truck-icon-small::before {
    content: '🚛';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.price-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.price-icon::before {
    content: '👍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.feature-card h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background: #F8FAFC;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 30px;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-intro p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

.services-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.main-truck-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-description {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-description p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.services-cta {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-cta h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

.btn-order {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

/* Delivery Locations Section */
.delivery-locations {
    padding: 80px 0;
    background: var(--white);
}

.locations-title {
    text-align: center;
    font-size: 42px;
    color: var(--water-blue);
    font-weight: 900;
    margin-bottom: 30px;
}

.locations-intro {
    text-align: center;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.9;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.location-section {
    margin-bottom: 70px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.1);
    border: 1px solid var(--sky-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-text-content {
    padding: 40px;
}

.location-title {
    color: var(--water-blue);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
}

.location-description {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 30px;
}

.location-image {
    text-align: center;
    padding: 20px;
    background: var(--sky-blue);
}

.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: block;
}

.location-section .btn-learn-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
}

.location-section .btn-learn-more:hover {
    background: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 50%;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 50%;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-title {
    text-align: center;
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing-description {
    text-align: center;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #F8FAFC;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.1);
    border: 1px solid var(--sky-blue);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonials-cta {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-cta h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-phone {
    color: var(--white);
    font-size: 36px;
    font-weight: 900;
    text-decoration: none;
    display: block;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--whatsapp-color) 100%);
}

.testimonials-footer {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: var(--sky-blue);
    text-align: center;
}

.order-title {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 20px;
}

.order-description {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.footer-logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-logo .logo-text p {
    font-size: 12px;
    opacity: 0.9;
}

.footer-description {
    line-height: 1.8;
    opacity: 0.95;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-phone {
    background: var(--dark-green);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: var(--beige-color);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--ocean-blue);
    font-weight: 600;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(14, 165, 233, 0.7);
    }
}

/* Contact Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.popup-icon-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    padding: 10px;
}

.popup-phone-btn {
    background: var(--primary-color);
    color: var(--white);
}

.popup-phone-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.6);
}

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

.popup-whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.popup-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.icon-large {
    width: 28px;
    height: 28px;
    color: var(--white);
    display: block;
    flex-shrink: 0;
}

.phone-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .services-image-wrapper {
        order: 2;
    }
    
    .services-cards {
        order: 1;
        margin-bottom: 30px;
    }
    
    .service-card {
        flex-direction: row;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-content {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: var(--primary-color);
        flex-direction: column;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        padding: 30px 20px;
        transition: right 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        width: 100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 0;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.15);
        margin-top: 5px;
        margin-right: 0;
        margin-bottom: 10px;
        padding: 5px 0;
        border-radius: 8px;
        display: none;
        width: 100%;
        min-width: auto;

    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-menu li {
        width: 100%;
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        border-radius: 5px;
        margin: 2px 5px;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: rgba(255, 255, 255, 0.25);
        color: var(--white);
        transform: translateX(-5px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .btn-order-now {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text {
        min-height: 350px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        min-height: 1.3em;
    }
    
    .hero-subtitle {
        font-size: 20px;
        min-height: 1.3em;
    }
    
    .hero-image {
        min-height: 250px;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-detail {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing {
        padding: 50px 0;
    }
    
    .order-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text h2 {
        font-size: 14px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .hero-text {
        min-height: 320px;
    }
    
    .hero-text h1 {
        font-size: 24px;
        min-height: 1.3em;
    }
    
    .hero-subtitle {
        font-size: 18px;
        min-height: 1.3em;
    }
    
    .hero-image {
        min-height: 200px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .features-list {
        padding: 20px;
        min-height: 160px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 8px 0;
        padding-right: 25px;
    }
    
    .pricing-title,
    .order-title {
        font-size: 22px;
    }
    
    .pricing-description,
    .order-description {
        font-size: 16px;
    }
    
    .btn-call {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .btn-call span {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
    
    .testimonials-cta h3 {
        font-size: 22px;
    }
    
    .cta-phone {
        font-size: 28px;
    }
    
    .btn-whatsapp {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .footer-phones {
        gap: 10px;
    }
    
    .footer-phone {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .contact-icon {
        width: 22px;
        height: 22px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-popup {
        bottom: 90px;
        right: 20px;
    }
    
    .popup-icon-btn {
        width: 65px;
        height: 65px;
        padding: 8px;
    }
    
    .icon-large {
        width: 24px;
        height: 24px;
    }
    
    .phone-number {
        font-size: 10px;
    }
    
    .location-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-text-content {
        padding: 20px;
        order: 2;
    }
    
    .location-image {
        order: 1;
        padding: 15px;
    }
    
    .location-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .location-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .location-section .btn-learn-more {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
}

