@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Amiri:wght@400;700&display=swap');

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

body {
    font-family: 'Cairo', 'Amiri', 'Arial', 'Tahoma', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

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

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Mobile Header Optimization */
@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav-container {
        padding: 0 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        margin: 0;
        list-style: none;
        display: none;
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        background: rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.2);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle:hover span {
    background: rgba(255, 255, 255, 0.8);
}

.nav-toggle.active span {
    background: white;
}

/* Hero Section */
/* Hero Logo */
.hero-logo {
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

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

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

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

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

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.9rem;
}

/* Cities Section */
.cities {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.cities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.city-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.city-card h3 a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
}

.city-card h3 a:hover {
    text-decoration: underline;
}

.city-card p {
    margin-top: 15px;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(102, 126, 234, 0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(102, 126, 234, 0.03)"/><circle cx="30" cy="30" r="0.5" fill="rgba(102, 126, 234, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
}

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

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e9ff 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-item h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.faq-item:hover h3 {
    color: #667eea;
}

.faq-item h3::before {
    content: "❓";
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.faq-item:hover p {
    color: #555;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.contact-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: bold;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .products h2,
    .cities h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .product-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .products,
    .cities,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .product-card,
    .city-card,
    .faq-item,
    .contact-item {
        padding: 20px;
    }
}

/* SEO and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.city-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Additional Styles for New Pages */
.areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.area-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.area-card p {
    opacity: 0.9;
}

/* Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid #e9ecef;
}

.price-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

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

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.price-amount {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.price-features li:last-child {
    border-bottom: none;
}

/* Price Comparison Table */
.price-comparison {
    padding: 80px 0;
    background-color: white;
}

.price-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table .savings {
    color: #28a745;
    font-weight: bold;
}

/* Usage Steps Styles */
.usage-steps {
    padding: 80px 0;
    background-color: white;
}

.usage-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

.steps-container {
    display: grid;
    gap: 40px;
}

.step-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    border-left: 5px solid #667eea;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.step-card p {
    color: #666;
    line-height: 1.8;
}

.step-image {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.step-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Important Notes Styles */
.important-notes {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.important-notes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    font-weight: bold;
}

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

.note-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.note-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.note-card.warning h3 {
    color: #dc3545;
}

.note-card.info h3 {
    color: #17a2b8;
}

.note-card.success h3 {
    color: #28a745;
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.note-card li:last-child {
    border-bottom: none;
}

/* Side Effects Styles */
.side-effects-info {
    padding: 80px 0;
    background-color: white;
}

.side-effects-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

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

.effect-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.effect-card.mild {
    border-left: 5px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.effect-card.moderate {
    border-left: 5px solid #fd7e14;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

.effect-card.severe {
    border-left: 5px solid #dc3545;
    background: linear-gradient(135deg, #fab1a0 0%, #fd79a8 100%);
}

.effect-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.effect-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.effect-card li {
    padding: 8px 0;
    color: #666;
}

.severity {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
}

/* Precautions Styles */
.precautions {
    padding: 80px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.precautions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    font-weight: bold;
}

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

.precaution-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.precaution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.precaution-card ul {
    list-style: none;
    padding: 0;
}

.precaution-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.precaution-card li:last-child {
    border-bottom: none;
}

/* Contact Methods Styles */
.contact-methods {
    padding: 80px 0;
    background-color: white;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

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

.contact-method-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-method-card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-method-card small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Service Hours Styles */
.service-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    font-weight: bold;
}

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

.hours-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.hours-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.hours-card small {
    color: #999;
    font-size: 0.9rem;
}

/* Cities Contact Styles */
.cities-contact {
    padding: 80px 0;
    background-color: white;
}

.cities-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

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

.city-contact-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.city-contact-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.city-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
}

.city-contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Cities Overview Styles */
.cities-overview {
    padding: 80px 0;
    background-color: white;
}

.cities-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-overview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.city-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.city-overview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-overview-card:hover img {
    transform: scale(1.05);
}

.city-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.city-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.city-info h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-overview-card:hover .city-info h3 a {
    color: #667eea;
}

.city-info p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 500;
}

.city-areas {
    margin-bottom: 20px;
    flex: 1;
}

.city-areas h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.city-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.city-info li {
    padding: 6px 12px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.city-overview-card:hover .city-info li {
    background: #e3f2fd;
    border-color: #667eea;
    color: #1976d2;
}

.city-info .btn {
    margin-top: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.city-info .btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Delivery Info Styles */
.delivery-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.delivery-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="delivery-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23delivery-pattern)"/></svg>');
    opacity: 0.3;
}

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

.delivery-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.delivery-card {
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 35px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.delivery-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-card h3::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 2px;
}

.delivery-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.delivery-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(240,240,240,0.8);
    color: #666;
    position: relative;
    padding-right: 25px;
    transition: all 0.3s ease;
}

.delivery-card li:last-child {
    border-bottom: none;
}

.delivery-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 12px;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.1rem;
}

.delivery-card:hover li {
    color: #555;
    transform: translateX(-5px);
}

/* Contact Form Styles */
.contact-form {
    padding: 80px 0;
    background-color: white;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* WhatsApp Icon for Phone Links */
.whatsapp-icon {
    font-size: 0.9em;
    margin-right: 5px;
}

/* Phone Links Styling */
a[href*="wa.me"] {
    color: #667eea !important;
    font-weight: bold;
    transition: all 0.3s ease;
}

a[href*="wa.me"]:hover {
    color: #764ba2 !important;
    transform: scale(1.05);
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}


.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.logo h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
}

/* Improved Spacing and Padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Enhanced Card Animations */
.product-card,
.city-card,
.faq-item,
.contact-item {
    transition: all 0.3s ease;
}

.product-card:hover,
.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Enhanced Responsive Design */
/* Desktop Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .products h2,
    .cities h2,
    .faq h2,
    .contact h2 {
        font-size: 3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Desktop Medium Screens */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

/* Tablet Landscape */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }
    
    .btn {
        min-width: 180px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .products,
    .cities,
    .faq,
    .contact {
        padding: 70px 0;
    }
    
    .product-card,
    .city-card,
    .faq-item,
    .contact-item {
        padding: 30px;
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav-container {
        padding: 0 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        margin: 0;
        list-style: none;
        display: none;
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        background: rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 15px 25px;
    }
    
    /* Cities Mobile Landscape */
    .cities-overview {
        padding: 70px 0;
    }
    
    .cities-overview h2 {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }
    
    .city-overview-card {
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .city-overview-card:hover {
        transform: translateY(-6px);
    }
    
    .city-overview-card img {
        height: 160px;
    }
    
    .city-info {
        padding: 20px;
    }
    
    .city-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .city-info p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .city-info ul {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
    }
    
    .city-info li {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .city-info .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    /* Delivery Info Mobile Landscape */
    .delivery-info {
        padding: 70px 0;
    }
    
    .delivery-info h2 {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .delivery-card {
        padding: 30px;
        border-radius: 22px;
    }
    
    .delivery-card:hover {
        transform: translateY(-8px) scale(1.015);
    }
    
    .delivery-card h3 {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }
    
    /* FAQ Mobile Landscape */
    .faq {
        padding: 70px 0;
    }
    
    .faq h2 {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .faq-item {
        padding: 30px;
        border-radius: 18px;
        margin-bottom: 22px;
    }
    
    .faq-item:hover {
        transform: translateY(-6px) scale(1.008);
    }
    
    .faq-item h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .faq-item p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .products,
    .cities,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .product-grid,
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card,
    .city-card,
    .faq-item,
    .contact-item {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        left: 15px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav-container {
        padding: 0 15px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        margin: 0;
        list-style: none;
        display: none;
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        background: rgba(255,255,255,0.1);
        transition: background-color 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Cities Mobile Optimizations */
    .cities-overview {
        padding: 60px 0;
    }
    
    .cities-overview h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .city-overview-card {
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    
    .city-overview-card:hover {
        transform: translateY(-4px);
    }
    
    .city-overview-card img {
        height: 140px;
    }
    
    .city-info {
        padding: 18px;
    }
    
    .city-info h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .city-info p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .city-areas h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .city-info ul {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 5px;
    }
    
    .city-info li {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .city-info .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    /* Delivery Info Mobile */
    .delivery-info {
        padding: 60px 0;
    }
    
    .delivery-info h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-card {
        margin: 0 10px;
        padding: 25px;
        border-radius: 20px;
    }
    
    .delivery-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .delivery-card h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .delivery-card li {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-item {
        margin: 0 10px 20px 10px;
        padding: 25px;
        border-radius: 15px;
    }
    
    .faq-item:hover {
        transform: translateY(-5px) scale(1.005);
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .products,
    .cities,
    .contact {
        padding: 50px 0;
    }
    
    .products h2,
    .cities h2,
    .faq h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .product-grid,
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card,
    .city-card,
    .contact-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .product-card h3,
    .city-card h3,
    .contact-item h3 {
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        left: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

/* Price Inquiry Section */
.price-inquiry {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e9ff 100%);
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.inquiry-text h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.inquiry-text ul {
    list-style: none;
    padding: 0;
}

.inquiry-text li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #555;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border: 2px solid #e6e9ff;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.call-to-action {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-features span {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-buttons,
    .whatsapp-float,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* Usage Steps Styling */
.usage-steps {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e9ff 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.step-header h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.detail-icon {
    font-size: 1.2rem;
}

.detail-item span:last-child {
    color: #555;
    font-weight: 500;
}

/* Important Notes Styling */
.important-notes {
    padding: 80px 0;
    background: white;
}

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

.note-card {
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.note-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    color: white;
}

.note-card.warning .note-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.note-card.info .note-header {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.note-card.success .note-header {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

.note-icon {
    font-size: 1.5rem;
}

.note-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.note-content {
    padding: 25px 30px;
    background: white;
}

.note-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-content li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-right: 20px;
}

.note-content li:last-child {
    border-bottom: none;
}

.note-content li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Responsive Design for Usage Page */
@media (max-width: 768px) {
    .usage-steps {
        padding: 60px 0;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .note-card {
        margin: 0 10px;
    }
    
    .note-header {
        padding: 20px;
    }
    
    .note-content {
        padding: 20px;
    }
}

/* Enhanced Blog Styling */
.blog-articles {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.blog-articles h2 {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.blog-articles p {
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

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

.article-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid transparent;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover::before {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.article-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover .article-image::after {
    opacity: 1;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 35px;
    position: relative;
}

.article-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.article-card:hover .article-content h3 {
    color: #667eea;
}

.article-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-date {
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.article-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-reading-time {
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-reading-time::before {
    content: '⏱️';
    font-size: 0.8rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Enhanced Blog Categories */
.blog-categories {
    padding: 100px 0;
    background: white;
    position: relative;
}

.blog-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e9ff 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.category-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.category-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.category-card .btn {
    position: relative;
    z-index: 2;
}

/* Enhanced Blog CTA */
.blog-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.blog-cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.blog-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.blog-cta .btn:hover::before {
    left: 100%;
}

.blog-cta .btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.blog-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

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

.blog-cta .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Article Content Styling */
.article-content {
    padding: 80px 0;
    background: white;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.article-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-reading-time {
    color: #999;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-body h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.article-body h3 {
    color: #444;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.article-body h4 {
    color: #555;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
}

.article-body p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-right: 20px;
}

.article-body li {
    color: #666;
    margin-bottom: 10px;
}

.article-image {
    text-align: center;
    margin: 30px 0;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #2196f3;
}

.info-box h4 {
    color: #1976d2;
    margin-bottom: 10px;
}

.warning-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #ff9800;
}

.warning-box h4 {
    color: #f57c00;
    margin-bottom: 10px;
}

.danger-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #f44336;
}

.danger-box h4 {
    color: #d32f2f;
    margin-bottom: 10px;
}

.success-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #4caf50;
}

.success-box h4 {
    color: #388e3c;
    margin-bottom: 10px;
}

/* Steps Container */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.city-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    margin: 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e9ff 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.article-cta h3 {
    color: #333;
    margin-bottom: 15px;
}

.article-cta p {
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        margin: 0 10px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        margin: 0 10px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

/* Enhanced Blog Preview Section */
.blog-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-pattern)"/></svg>');
    opacity: 0.3;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 700;
}

.section-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.blog-preview-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid transparent;
}

.blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-preview-card:hover::before {
    opacity: 1;
}

.blog-preview-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-preview-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.card-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-preview-card:hover .card-content h3 {
    color: #667eea;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.reading-time,
.article-date {
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.read-more .arrow {
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(3px);
}

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

.blog-cta .btn {
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.blog-cta .btn:hover::before {
    left: 100%;
}

.blog-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Internal Links Styling */
.faq-item p a,
.cities p a,
.products p a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item p a:hover,
.cities p a:hover,
.products p a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
    transform: translateY(-1px);
}

/* Enhanced Footer Links */
.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Responsive Design for Enhanced Blog Preview */
@media (max-width: 768px) {
    .blog-preview {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-preview-card {
        margin: 0 15px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-meta {
        gap: 15px;
    }
    
    .blog-cta .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
