*{margin:0;padding:0;box-sizing:border-box}body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.6;color:#333;font-display:swap}img{max-width:100%;height:auto;loading:lazy}.container{max-width:1200px;margin:0 auto;padding:0 20px;contain:layout}



/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 0.5rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    margin-bottom: 1rem;
    color: #64748b;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #059669;
    margin: 1rem 0;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: #64748b;
}

.tour-list {
    text-align: left;
}

.tour-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #1e293b;
    font-size: 1.1rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.whatsapp-cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.btn-whatsapp-large {
    background: white;
    color: #25d366;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-whatsapp-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #25d366;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Transfer Rates */
.transfer-rates {
    padding: 80px 0;
    background: #f8fafc;
}

.transfer-rates h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rate-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.rate-card:hover {
    transform: translateY(-5px);
}

.rate-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.rate-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.rate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.rate-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #059669;
    margin: 1rem 0;
}

.popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Includes Section */
.includes {
    padding: 80px 0;
    background: white;
}

.includes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.include-item {
    text-align: center;
    padding: 1.5rem;
}

.include-item i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.include-item h4 {
    color: #1e293b;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
}

/* Tours Grid */
.tours-grid-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.tour-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tour-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.tour-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #059669;
    margin: 1rem 0;
}

/* Expat Services */
.expat-services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-category i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-category ul {
    list-style: none;
}

.service-category ul li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

/* Rentals */
.rentals-section {
    padding: 80px 0;
    background: #f8fafc;
}

.rental-categories {
    margin-bottom: 3rem;
}

.rental-category {
    margin-bottom: 3rem;
}

.rental-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rental-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.rental-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.rental-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #059669;
    margin: 1rem 0;
}

.rental-features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.rental-features h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card.primary {
    border: 3px solid #25d366;
    transform: scale(1.05);
}

.contact-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-card.primary i {
    color: #25d366;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Page */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #1e293b;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    color: #64748b;
}

.about-list i {
    color: #059669;
    font-size: 1.2rem;
}

.services-overview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.services-overview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.service-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.service-item span {
    color: #1e293b;
    font-weight: 500;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 3rem;
}

.guarantee-card {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.guarantee-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-card p {
    color: rgba(255,255,255,0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-card.featured {
        transform: none;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .services-categories {
        grid-template-columns: 1fr;
    }
    
    .rental-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-card.primary {
        transform: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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