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

:root {
    --primary-color: #a91e2f;
    --primary-dark: #8a1826;
    --primary-light: #c92a3e;
    --text-dark: #2c2c2c;
    --text-gray: #6c6c6c;
    --text-light: #9c9c9c;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: var(--text-dark);
}

.mobile-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 25px;
    border-bottom: 1px solid rgba(169, 30, 47, 0.1);
    background: var(--primary-color);
    position: relative;
}

.mobile-nav-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    padding: 8px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 25px 30px;
    margin: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(169, 30, 47, 0.05);
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.mobile-nav-link:hover {
    background: rgba(169, 30, 47, 0.05);
    color: var(--primary-color);
    padding-left: 40px;
}

.mobile-nav-contact {
    padding: 25px 30px 30px;
    background: rgba(169, 30, 47, 0.02);
    border-top: 2px solid rgba(169, 30, 47, 0.08);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(169, 30, 47, 0.05);
    text-align: center;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
}

.contact-value:hover {
    color: var(--primary-color);
}

.contact-value:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.mobile-nav-contact p {
    margin: 8px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.mobile-nav-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.5s;
    transform: translateX(-30px);
    opacity: 0;
}

.mobile-nav-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.mobile-nav-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

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

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon img {
    object-fit: contain;
}

/* Remove logo-text styles since we're using the full logo image */

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 30, 47, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(169, 30, 47, 0.03) 10px, rgba(169, 30, 47, 0.03) 20px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(169, 30, 47, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 100px 20px 50px;
}

.hero-badge {
    display: inline-block;
    background: rgba(169, 30, 47, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(169, 30, 47, 0.5);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(169, 30, 47, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 10px; }
    50% { opacity: 1; top: 20px; }
}

/* Stats Section */
.stats {
    background: var(--bg-white);
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(169, 30, 47, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.about-icon {
    margin-bottom: 25px;
}

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

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

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Construction Notice */
.construction-notice {
    padding: 80px 0;
    background: var(--bg-white);
}

.notice-box {
    background: linear-gradient(135deg, rgba(169, 30, 47, 0.05) 0%, rgba(169, 30, 47, 0.1) 100%);
    border: 2px solid rgba(169, 30, 47, 0.2);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    margin-bottom: 30px;
}

.notice-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.notice-box p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-map {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 60px;
}

.map-placeholder svg {
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 600;
}

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

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.powered-by:hover {
    opacity: 0.7;
}

.powered-by span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 400;
}

.powered-by img {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* Auto-hide after 2 seconds as failsafe */
    animation: autoHide 2s ease forwards;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes autoHide {
    0% { opacity: 1; visibility: visible; }
    50% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.loading-logo {
    text-align: center;
    opacity: 1;
    animation: none;
}

.loading-logo img {
    filter: none;
    max-width: 300px;
    height: auto;
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-logo .logo-icon img {
        width: 200px;
        height: 50px;
    }
    
    .footer-description {
        max-width: 100%;
        font-size: 16px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .footer-links li {
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 16px;
    }
    
    .footer-contact p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header.scrolled {
        padding: 8px 0;
    }
    
    .header .container {
        gap: 0;
    }

    .logo {
        gap: 10px;
    }
    
    .logo-icon img {
        width: 140px;
        height: 35px;
    }
    
    .btn-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }

    .hero {
        min-height: 500px;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 80px 20px 50px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 18px;
        margin-bottom: 25px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .scroll-indicator {
        display: none;
    }

    .stats {
        padding: 60px 0;
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .stat-number {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .about,
    .services,
    .construction-notice,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-card,
    .service-item {
        padding: 35px 25px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(169, 30, 47, 0.1);
        margin: 0 15px;
        transition: all 0.3s ease;
    }
    
    .about-card:hover,
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(169, 30, 47, 0.2);
    }
    
    .about-card h3,
    .service-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .about-card p,
    .service-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .notice-box {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(169, 30, 47, 0.15);
    }

    .notice-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .notice-box p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .contact-item {
        padding: 35px 25px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(169, 30, 47, 0.1);
        border: 1px solid rgba(169, 30, 47, 0.05);
        margin: 0 15px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(169, 30, 47, 0.2);
    }
    
    .contact-details h4 {
        font-size: 16px;
        color: var(--primary-color);
        margin-bottom: 12px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-logo .logo-icon img {
        width: 240px;
        height: 60px;
        
    }
    
    .footer-logo .logo-text h3 {
        font-size: 20px;
    }
    
    .footer-logo .logo-text p {
        font-size: 10px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }
    
    .logo-icon img {
        width: 120px;
        height: 30px;
    }
    
    .btn-contact {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn {
        max-width: 260px;
        padding: 12px 25px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .about-card,
    .service-item {
        padding: 25px 20px;
    }
    
    .notice-box {
        padding: 30px 20px;
    }
    
    .notice-box h3 {
        font-size: 20px;
    }
    
    .notice-box p {
        font-size: 14px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .map-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .powered-by span {
        font-size: 10px;
    }
    
    .powered-by img {
        height: 12px;
    }
    
    .loading-logo img {
        width: 160px;
        height: 48px;
    }

    /* Enhanced mobile touch interactions */
    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 16px;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        -webkit-tap-highlight-color: rgba(169, 30, 47, 0.2);
        touch-action: manipulation;
    }

    .btn-primary {
        box-shadow: 0 8px 25px rgba(169, 30, 47, 0.3);
    }

    .btn-primary:active {
        transform: translateY(1px);
    }

    .btn-secondary:active {
        transform: translateY(1px);
    }

    /* Touch-friendly tap highlights */
    .mobile-nav-toggle,
    .mobile-nav-links a,
    .mobile-nav-contact a,
    .service-item,
    .about-card,
    .contact-item {
        -webkit-tap-highlight-color: rgba(169, 30, 47, 0.1);
        touch-action: manipulation;
    }
}
