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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: #25D366;
    color: white;
}

.btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D32F2F;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D32F2F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D32F2F;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: -1;
    display: block !important;
    visibility: visible !important;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.typing-text {
    display: inline-block;
    border-right: 3px solid #D32F2F;
    animation: typing 3s steps(40, end), blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
}

.desktop-text {
    display: inline-block;
}

.mobile-text {
    display: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #D32F2F;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #757575;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #F5F5F5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

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

.about-text h3 {
    color: #D32F2F;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

.feature-item:hover .feature-img {
    transform: scale(1.1);
}

.feature-content h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #757575;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

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

.service-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 1.2rem;
    border-radius: 8px;
}

.service-fallback i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #D32F2F;
}

.service-fallback span {
    font-size: 0.9rem;
    font-weight: 500;
}

.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: #F5F5F5;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-character {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #D32F2F;
    animation: avatarFloat 3s ease-in-out infinite;
}

.avatar-1 {
    background: linear-gradient(135deg, #FFE0B2, #FFCC02);
}

.avatar-2 {
    background: linear-gradient(135deg, #E1BEE7, #BA68C8);
}

.avatar-3 {
    background: linear-gradient(135deg, #B3E5FC, #29B6F6);
}

.avatar-face {
    width: 60px;
    height: 60px;
    position: relative;
}

.avatar-eyes {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 10px;
}

.eye {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    position: relative;
    animation: eyeBlink 4s infinite;
}

.eye::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    top: 1px;
    left: 1px;
}

.avatar-mouth {
    width: 20px;
    height: 10px;
    border: 2px solid #333;
    border-top: none;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    animation: mouthSmile 2s ease-in-out infinite;
}

.testimonial-slide:hover .avatar-character {
    transform: scale(1.1);
    animation: avatarBounce 0.6s ease-in-out;
}

.testimonial-slide:hover .eye {
    animation: eyeWink 0.3s ease-in-out;
}

.testimonial-slide:hover .avatar-mouth {
    animation: mouthLaugh 0.5s ease-in-out;
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 4rem;
    color: #D32F2F;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-text p::after {
    content: '"';
    font-size: 4rem;
    color: #D32F2F;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
}

.testimonial-author h4 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #D32F2F;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #D32F2F;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-details p {
    color: #757575;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D32F2F;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

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

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact i {
    color: #D32F2F;
    width: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #D32F2F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #D32F2F;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: #D32F2F;
    }
    51%, 100% {
        border-color: transparent;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Avatar Animations */
@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes avatarBounce {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        height: 8px;
    }
    95% {
        height: 2px;
    }
}

@keyframes eyeWink {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 2px;
    }
}

@keyframes mouthSmile {
    0%, 100% {
        border-radius: 0 0 20px 20px;
        height: 10px;
    }
    50% {
        border-radius: 0 0 15px 15px;
        height: 8px;
    }
}

@keyframes mouthLaugh {
    0%, 100% {
        border-radius: 0 0 20px 20px;
        height: 10px;
    }
    50% {
        border-radius: 0 0 25px 25px;
        height: 12px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline-block;
        line-height: 1.2;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .testimonial-slide {
        padding: 2rem;
    }
    
    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-character {
        width: 80px;
        height: 80px;
    }
    
    .avatar-face {
        width: 50px;
        height: 50px;
    }
    
    .eye {
        width: 6px;
        height: 6px;
    }
    
    .eye::after {
        width: 2px;
        height: 2px;
    }
    
    .avatar-mouth {
        width: 16px;
        height: 8px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .about-img {
        height: 250px;
    }
    
    .feature-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        width: 100%;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .avatar-character {
        width: 70px;
        height: 70px;
    }
    
    .avatar-face {
        width: 40px;
        height: 40px;
    }
    
    .eye {
        width: 5px;
        height: 5px;
    }
    
    .eye::after {
        width: 2px;
        height: 2px;
    }
    
    .avatar-mouth {
        width: 14px;
        height: 6px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .about-img {
        height: 200px;
    }
    
    .feature-image {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline-block;
        line-height: 1.2;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure images are visible */
.hero-bg-image,
.about-img,
.feature-img,
.service-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Image Loading Animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-loaded {
    animation: imageLoad 0.5s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
