* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: #fafbfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
}

.logo-svg {
    height: 58px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px; /* Adjust space between logo and motto */
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-tagline {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.2;
    font-weight: 500;
    display: block;
    text-align: center;
    width: 100%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    margin-left: 0;
    text-align: center;
    width: 100%;
}



/* Duplicate rule removed - using the one above */

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Enhanced blue cursor effect - bottom border that grows */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
    left: 10%;
}

/* Alternative: Full width slide effect */
/* Uncomment this section and comment out the above to use this effect:
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::before {
    width: 100%;
}
*/

.nav-links a:hover {
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1200&h=600&fit=crop') no-repeat center center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 0;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), transparent);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.services > .container > p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: cardShine 0.6s ease-in-out;
}

@keyframes cardShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.why-us h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
}

.feature p {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
}

.step-number {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #2c3e50;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::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.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact > .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    color: #2c3e50;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: rgba(255,255,255,1);
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 16px 20px;
    border: 2px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    background: white;
    transform: translateY(-2px);
}

.quote-form select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233498db" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    appearance: none;
    padding-right: 50px;
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

footer p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

footer p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

footer a {
    color: #2ecc71;
    text-decoration: none;
}

footer a:hover {
    color: #27ae60;
    text-decoration: underline;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.4s ease;
    animation: whatsappPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.whatsapp-btn:hover::before {
    transform: translateX(100%);
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 36px;
    height: 36px;
    fill: white;
    position: relative;
    z-index: 2;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Loading states */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Improved typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Enhanced focus states for accessibility */
*:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Improved button states */
button, .btn, .cta-button, .service-cta {
    cursor: pointer;
    user-select: none;
}

button:disabled, .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-links.active {
        display: flex;
        transform: translateX(0);
        animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    @keyframes slideInFromLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .nav-links li {
        margin: 1.5rem 0;
        width: 80%;
        text-align: center;
        transform: translateX(-50px);
        opacity: 0;
        animation: slideInItems 0.3s ease-out forwards;
    }
    
    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes slideInItems {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .nav-links a {
        display: block;
        padding: 1.5rem 2rem;
        width: 100%;
        border-radius: 15px;
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        /* Enhanced touch targets for mobile */
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Better touch feedback */
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.3);
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .nav-links a:hover::before,
    .nav-links a:active::before {
        left: 0;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        color: white;
        border-color: #3498db;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    }
    
    /* Enhanced hamburger menu */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 10000;
        padding: 1rem;
        border-radius: 10px;
        background: rgba(52, 152, 219, 0.1);
        transition: all 0.3s ease;
        /* Better touch target */
        min-width: 50px;
        min-height: 50px;
        justify-content: center;
        align-items: center;
        /* Enhanced touch feedback */
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.3);
    }
    
    .hamburger:hover {
        background: rgba(52, 152, 219, 0.2);
        transform: scale(1.1);
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: linear-gradient(135deg, #2c3e50, #3498db);
        margin: 4px 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 2px;
        transform-origin: center;
    }
    
    .hamburger.active {
        background: rgba(231, 76, 60, 0.2);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }
    
    /* Close button in mobile menu */
    .nav-links::before {
        content: '✕';
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: #e74c3c;
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(231, 76, 60, 0.1);
        transition: all 0.3s ease;
        z-index: 10001;
        /* Enhanced touch target */
        -webkit-tap-highlight-color: rgba(231, 76, 60, 0.3);
    }
    
    .nav-links::before:hover {
        background: rgba(231, 76, 60, 0.2);
        transform: scale(1.1);
    }
    
    /* Header adjustments */
    nav {
        padding: 1rem 1.5rem;
        position: relative;
        z-index: 1001;
    }
    
    .logo h2 {
        font-size: 1.6rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    /* Hero section */
    .hero {
        padding: 4rem 1.5rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* Services section */
    .services {
        padding: 4rem 0;
    }
    
    .services h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .services > .container > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    /* Why Us section */
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    /* How it works section */
    .how-it-works {
        padding: 4rem 0;
    }
    
    .how-it-works h2 {
        font-size: 2.2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .step {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    /* Contact section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .contact > .container > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    /* Form improvements */
    .quote-form {
        gap: 1.2rem;
    }
    
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 0;
    }
    
    footer p:first-child {
        font-size: 1rem;
    }
    
    footer p:last-child {
        font-size: 0.85rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    /* WhatsApp button */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-btn svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    nav {
        padding: 0.8rem 1rem;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    /* Hero section */
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .services,
    .why-us,
    .how-it-works,
    .contact {
        padding: 3rem 0;
    }
    
    .services h2,
    .why-us h2,
    .how-it-works h2,
    .contact h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .services > .container > p,
    .contact > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Service cards */
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Features and steps */
    .feature,
    .step {
        padding: 1.2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    /* Contact cards */
    .contact-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    /* Forms */
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 12px 14px;
    }
    
    .quote-form textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* WhatsApp button */
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    /* Very small screens */
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .services h2,
    .why-us h2,
    .how-it-works h2,
    .contact h2 {
        font-size: 1.6rem;
    }
    
    .service-card,
    .feature,
    .step,
    .contact-card {
        margin: 0;
    }
    
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 10px 12px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature:hover,
    .step:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-links a:hover {
        transform: none;
    }
    
    .cta-button:hover,
    .service-cta:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-button,
    .service-cta,
    .submit-btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services,
    .why-us,
    .how-it-works,
    .contact {
        padding: 3rem 0;
    }
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-text h2 {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
        margin-top: 0; /* Reset margin to rely on logo margin */
    }
    
    .logo-svg {
        height: 52px;
        margin-bottom: 8px; /* Adjust space between logo and motto on medium screens */
    }
}

@media (max-width: 480px) {
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
        margin-top: 0; /* Reset margin to rely on logo margin */
    }
    
    .logo-svg {
        height: 46px;
        margin-bottom: 7px; /* Adjust space between logo and motto on small screens */
    }
}

/* Enhanced Mobile Navigation - Additional Breakpoints */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
        min-height: 55px;
    }
    
    .hamburger {
        min-width: 45px;
        min-height: 45px;
        padding: 0.8rem;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
        margin-top: 0; /* Reset margin to rely on logo margin */
    }
    
    nav {
        padding: 0.8rem 1rem;
    }
}

/* Landscape orientation on mobile - Enhanced */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-links {
        padding: 1rem 0;
        justify-content: space-around;
    }
    
    .nav-links li {
        margin: 0.8rem 0;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        min-height: 50px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .nav-links a {
        font-size: 1rem;
        padding: 1rem;
        min-height: 50px;
    }
    
    .hamburger {
        min-width: 40px;
        min-height: 40px;
    }
    
    .logo-tagline {
        display: none; /* Hide tagline on very small screens */
    }
    
    .logo-svg {
        height: 40px;
        margin-bottom: 6px; /* Adjust space between logo and motto on very small screens */
        max-width: 210px; /* Adjust width on very small screens */
    }
}

/* High DPI screens (Retina displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hamburger span {
        height: 3px; /* Slightly thicker lines on high DPI */
    }
    
    .nav-links a {
        border-width: 1px; /* Thinner borders on high DPI */
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-links a:hover {
        /* Remove hover effects on touch devices */
        transform: none;
        box-shadow: none;
    }
    
    .nav-links a:active {
        /* Enhanced active state for touch */
        transform: scale(0.98);
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
    }
    
    .hamburger:hover {
        /* Remove hover effects on touch devices */
        transform: none;
    }
    
    .hamburger:active {
        /* Enhanced active state for touch */
        transform: scale(0.95);
        background: rgba(52, 152, 219, 0.3);
    }
}

/* Accessibility improvements for mobile */
@media (prefers-reduced-motion: reduce) {
    .nav-links {
        transition: none;
        animation: none;
    }
    
    .nav-links.active {
        animation: none;
    }
    
    .nav-links li {
        animation: none;
    }
    
    .hamburger span {
        transition: none;
    }
}

/* Focus states for keyboard navigation on mobile */
.hamburger:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 3px solid #3498db;
    outline-offset: 2px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

/* Safe area support for devices with notches */
@supports (padding: max(0px)) {
    .nav-links {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
    
    nav {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .nav-links {
        /* Fix for iOS Safari viewport height issues */
        height: 100vh;
        height: -webkit-fill-available;
    }
    
    .nav-links a {
        /* Prevent iOS zoom on input focus */
        font-size: max(16px, 1.1rem);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Ensure all interactive elements are at least 44px for touch */
    .cta-button,
    .submit-btn,
    .service-cta,
    button {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }
    
    /* Larger form inputs for touch */
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        min-height: 44px;
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .cta-button:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    /* Add active states for touch feedback */
    .cta-button:active,
    .submit-btn:active,
    .service-cta:active {
        transform: scale(0.98);
        opacity: 0.8;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before {
        animation: none;
    }
    
    .service-card::before {
        animation: none;
    }
}

/* Print styles */
@media print {
    .nav-links,
    .hamburger,
    .cta-button,
    .submit-btn,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .service-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}

/* Commute Section Styling */
.commute-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 2rem;
}

.commute-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.commute-section p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.commute-widget {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 500px;
    max-width: 1000px;
    margin: 0 auto;
}

.commute-widget iframe,
.commute-widget .commutes {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .commute-section h2 {
        font-size: 2rem;
    }
    
    .commute-widget {
        height: 400px;
        margin: 0 1rem;
    }
}