/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Mobile-first container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Optimized for touch interactions */
.btn, .contact-btn, .service-card, .whatsapp-float a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

/* Enhanced smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* GPU acceleration for animations */
    .service-card, .btn, .contact-btn, .hero-content, .whatsapp-float a {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    /* Optimize repaints */
    .header {
        will-change: transform, background;
        transition: transform 0.3s ease, background 0.3s ease;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Enhanced focus states for accessibility */
    .btn:focus, .contact-btn:focus, .service-card:focus {
        outline: 3px solid rgba(220, 38, 38, 0.5);
        outline-offset: 2px;
    }
    
    /* Better text rendering on mobile */
    body {
        text-rendering: optimizeLegibility;
        -webkit-font-feature-settings: "liga" on;
        font-feature-settings: "liga" on;
    }
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand h1 {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #dc2626;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section with Video Background */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

/* Video Background Styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.4;
    filter: sepia(20%) saturate(1.2) contrast(1.1) brightness(0.8);
    transition: opacity 0.5s ease, filter 0.5s ease;
}

/* Awesome video effects */
.video-background video:hover {
    filter: sepia(15%) saturate(1.3) contrast(1.2) brightness(0.9);
}

/* Video Overlay for Perfect Blending */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(220, 38, 38, 0.85) 0%, 
        rgba(153, 27, 27, 0.9) 50%,
        rgba(124, 45, 18, 0.85) 100%
    );
    z-index: 2;
    mix-blend-mode: multiply;
}

/* Additional overlay for extra blending magic */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 20%,
        rgba(220, 38, 38, 0.3) 70%,
        rgba(153, 27, 27, 0.6) 100%
    );
    mix-blend-mode: color-burn;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
    z-index: 3;
}

.hero-content {
    color: white;
    z-index: 4;
    position: relative;
    padding: 0 20px;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #dc2626;
}

.btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    background: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.coming-soon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.coming-soon h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature i {
    color: #dc2626;
    font-size: 1.2rem;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 80px 0;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: white;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-actions {
    text-align: center;
}

.contact-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.call-btn {
    background: white;
    color: #dc2626;
}

.call-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

.contact-note {
    opacity: 0.9;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    margin-top: 50px;
    text-align: center;
}

.map-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-section h3::before {
    content: '\f041';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2em;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid white;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    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 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Mobile Header */
    .header {
        padding: 0.8rem 0;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Stunning Mobile Hero */
    .hero {
        text-align: center;
        padding: 30px 0 50px;
        min-height: 80vh;
    }
    
    /* Mobile Video Background Optimization */
    .video-background video {
        /* Reduce video quality on mobile for better performance */
        opacity: 0.2;
        filter: sepia(30%) saturate(1.5) contrast(1.2) brightness(0.6);
    }
    
    .video-overlay {
        background: linear-gradient(
            135deg, 
            rgba(220, 38, 38, 0.9) 0%, 
            rgba(153, 27, 27, 0.95) 50%,
            rgba(124, 45, 18, 0.9) 100%
        );
    }
    
    /* Enhanced mobile hero content */
    .hero-content,
    .hero-image {
        z-index: 5;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        background: linear-gradient(45deg, #fff, #f8f8f8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .location {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 18px 35px;
        font-size: 1.1rem;
        min-width: 150px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    /* Mobile Services Grid */
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .category-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.25);
        border-color: #dc2626;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    }
    
    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Enhanced About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .feature {
        justify-content: center;
        font-size: 1rem;
        background: rgba(220, 38, 38, 0.1);
        padding: 10px 15px;
        border-radius: 10px;
    }
    
    .about-img {
        height: 250px;
        border-radius: 20px;
    }
    
    /* Stunning Mobile Contact */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-actions {
        order: 1;
    }
    
    .contact-item {
        margin-bottom: 25px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .contact-item i {
        font-size: 1.8rem;
    }
    
    .contact-item h4 {
        font-size: 1.3rem;
    }
    
    .contact-actions h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
        min-width: 200px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .contact-btn:active {
        transform: scale(0.95);
    }
    
    .whatsapp-btn {
        animation: pulse-green 2s infinite;
    }
    
    @keyframes pulse-green {
        0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
        50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6); }
        100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
    }
    
    /* Enhanced Map for Mobile */
    .map-section {
        margin-top: 40px;
    }
    
    .map-section h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .map-container {
        margin: 0 15px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .map-container iframe {
        height: 280px;
        border-radius: 20px;
    }
    
    /* Enhanced Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Stunning WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        animation: float-bounce 3s ease-in-out infinite;
    }
    
    @keyframes float-bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .whatsapp-float a:active {
        transform: scale(0.9);
    }
    
    /* Coming Soon Enhanced */
    .coming-soon {
        margin-top: 2rem;
        padding: 30px 20px;
        border-radius: 25px;
        background: linear-gradient(135deg, #dc2626, #991b1b, #7c2d12);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
    }
    
    .coming-soon h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    /* Service Category Enhanced */
    .service-category {
        margin-bottom: 3rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    /* Ultra-Mobile Optimizations */
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .location {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .category-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .service-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
    }
    
    .contact-item i {
        font-size: 1.6rem;
    }
    
    .map-container {
        margin: 0 10px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-section h3 {
        font-size: 1.4rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .coming-soon {
        padding: 25px 15px;
    }
    
    .coming-soon h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
        min-width: 130px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 18px 12px;
    }
    
    .contact-btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 160px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-content,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.contact-btn:active {
    transform: translateY(0);
}