/*
ORIGINAL COLOR SCHEME (for easy restoration):
- Header: linear-gradient(135deg, #667eea 0%, #764ba2 100%)
- Hero: linear-gradient(135deg, rgba(168, 237, 234, 0.85) 0%, rgba(254, 214, 227, 0.85) 100%)
- Primary Button: linear-gradient(135deg, #ff6b6b, #ee5a24)
- Hero Button: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)
- Price Items: linear-gradient(135deg, #667eea, #764ba2)
- Gallery: linear-gradient(135deg, #f093fb 0%, #f5576c 100%)
- Features: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%)
- Contact: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%)
- Contact Button: linear-gradient(135deg, #ff6b6b, #ee5a24)
*/

/*
NEW COLOR SCHEME (Blue/Gray/Green/White):
- Primary Blue: #4a6741 (forest green)
- Secondary Blue: #708090 (slate gray)
- Accent Green: #6b8e3d (olive green)
- Light Gray: #f8f9fa
- Medium Gray: #6c757d
- Dark Gray: #2c3e50
- Success Green: #28a745
- White: #ffffff
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #708090 0%, #4a6741 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.8s ease-out;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    color: #e8f2ff;
    font-size: 0.9rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.4);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(230,126,34,0.5);
    }
}

.phone-icon {
    font-size: 1.1rem;
    animation: ring 3s ease-in-out infinite;
}

@keyframes ring {
    0%, 10%, 20% {
        transform: rotate(0deg);
    }
    5%, 15% {
        transform: rotate(15deg);
    }
}

/* Hero Section */
.hero {
    background: url('assets/generated.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    animation: fadeIn 1.2s ease-out;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: auto;
}

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

.hero-content {
    max-width: 600px;
    margin: 0;
    margin-right: auto;
    text-align: left;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(248,249,250,0.4) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.7);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

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

.btn-hero {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
    animation: bounceIn 1s ease-out 0.8s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}

.btn-hero.loaded {
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #708090, #4a6741);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    animation: fadeInUp 0.8s ease-out;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-item {
    background: linear-gradient(135deg, #708090, #4a6741);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: scale(1.05);
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.duration {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.delivery-option, .service-benefit {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #708090;
}

.additional-fee {
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.materials-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.materials-list li {
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.materials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Trailer Gallery Section */
.trailer-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

.carousel input[type="radio"] {
    display: none;
}

.carousel-slides {
    position: relative;
    width: 400%;
    height: 500px;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 25%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

/* Carousel Arrows */
.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.arrow {
    position: absolute;
    background: rgba(255,255,255,0.9);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: none; /* Hide all arrows by default */
}

.arrow:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.arrow-prev {
    left: 20px;
}

.arrow-next {
    right: 20px;
}

/* Carousel State Management */
#slide1:checked ~ .carousel-slides {
    transform: translateX(0);
}

#slide2:checked ~ .carousel-slides {
    transform: translateX(-25%);
}

#slide3:checked ~ .carousel-slides {
    transform: translateX(-50%);
}

#slide4:checked ~ .carousel-slides {
    transform: translateX(-75%);
}

/* Active dot styling */
#slide1:checked ~ .carousel-nav .nav-dot:nth-child(1),
#slide2:checked ~ .carousel-nav .nav-dot:nth-child(2),
#slide3:checked ~ .carousel-nav .nav-dot:nth-child(3),
#slide4:checked ~ .carousel-nav .nav-dot:nth-child(4) {
    background: white;
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.3);
}

/* Show correct arrows based on current slide */
#slide1:checked ~ .carousel-arrows .next-from-1 {
    display: flex;
}

#slide2:checked ~ .carousel-arrows .prev-from-2,
#slide2:checked ~ .carousel-arrows .next-from-2 {
    display: flex;
}

#slide3:checked ~ .carousel-arrows .prev-from-3,
#slide3:checked ~ .carousel-arrows .next-from-3 {
    display: flex;
}

#slide4:checked ~ .carousel-arrows .prev-from-4 {
    display: flex;
}

/* Services Mobile Carousel */
.services-carousel-container {
    display: none; /* Hidden by default, shown on mobile */
}

.services-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
    margin-top: 2rem;
}

.services-carousel input[type="radio"] {
    display: none;
}

.services-carousel-slides {
    position: relative;
    width: 300%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide {
    width: 33.333%;
    padding: 1rem;
}

.service-slide .service-card {
    margin: 0;
    height: 100%;
    min-height: 450px;
}

/* Services Navigation */
.services-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.services-carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

/* Services Carousel State Management */
#service-slide1:checked ~ .services-carousel-slides {
    transform: translateX(0);
}

#service-slide2:checked ~ .services-carousel-slides {
    transform: translateX(-33.333%);
}

#service-slide3:checked ~ .services-carousel-slides {
    transform: translateX(-66.666%);
}

/* Services Active dot styling */
#service-slide1:checked ~ .services-carousel-nav .nav-dot:nth-child(1),
#service-slide2:checked ~ .services-carousel-nav .nav-dot:nth-child(2),
#service-slide3:checked ~ .services-carousel-nav .nav-dot:nth-child(3) {
    background: #708090;
    border-color: rgba(112,128,144,0.5);
    transform: scale(1.3);
}

/* Services Arrow visibility */
#service-slide1:checked ~ .services-carousel-arrows .next-from-1 {
    display: flex;
}

#service-slide2:checked ~ .services-carousel-arrows .prev-from-2,
#service-slide2:checked ~ .services-carousel-arrows .next-from-2 {
    display: flex;
}

#service-slide3:checked ~ .services-carousel-arrows .prev-from-3 {
    display: flex;
}

/* Features Mobile Carousel */
.features-carousel-container {
    display: none; /* Hidden by default, shown on mobile */
}

.features-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
    margin-top: 2rem;
}

.features-carousel input[type="radio"] {
    display: none;
}

.features-carousel-slides {
    position: relative;
    width: 300%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-slide {
    width: 33.333%;
    padding: 1rem;
}

.feature-slide .feature-card {
    margin: 0;
    height: 100%;
    min-height: 350px;
}

/* Features Navigation */
.features-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.features-carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

/* Features Carousel State Management */
#feature-slide1:checked ~ .features-carousel-slides {
    transform: translateX(0);
}

#feature-slide2:checked ~ .features-carousel-slides {
    transform: translateX(-33.333%);
}

#feature-slide3:checked ~ .features-carousel-slides {
    transform: translateX(-66.666%);
}

/* Features Active dot styling */
#feature-slide1:checked ~ .features-carousel-nav .nav-dot:nth-child(1),
#feature-slide2:checked ~ .features-carousel-nav .nav-dot:nth-child(2),
#feature-slide3:checked ~ .features-carousel-nav .nav-dot:nth-child(3) {
    background: #708090;
    border-color: rgba(112,128,144,0.5);
    transform: scale(1.3);
}

/* Features Arrow visibility */
#feature-slide1:checked ~ .features-carousel-arrows .next-from-1 {
    display: flex;
}

#feature-slide2:checked ~ .features-carousel-arrows .prev-from-2,
#feature-slide2:checked ~ .features-carousel-arrows .next-from-2 {
    display: flex;
}

#feature-slide3:checked ~ .features-carousel-arrows .prev-from-3 {
    display: flex;
}

/* Mobile Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slides {
        height: 350px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Show mobile carousels and hide desktop grids */
    .services-grid,
    .features-grid {
        display: none !important;
    }

    .services-carousel-container,
    .features-carousel-container {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .trailer-gallery {
        padding: 3rem 0;
    }

    .carousel-slides {
        height: 280px;
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .service-slide .service-card {
        min-height: 400px;
    }

    .feature-slide .feature-card {
        min-height: 320px;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eaf8 100%);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

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

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(112, 128, 144, 0.85) 0%, rgba(74, 103, 65, 0.85) 100%), url('assets/trailer/ne.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(112, 128, 144, 0.6) 0%, rgba(74, 103, 65, 0.6) 100%);
    z-index: 1;
}

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

.contact-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.contact-content p {
    color: #e8f2ff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.btn-contact {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230,126,34,0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    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-section h3 {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3498db;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.hours p {
    margin-bottom: 0.3rem;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .contact {
        background-attachment: scroll;
    }

    .hero-content {
        max-width: 100%;
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing {
        flex-direction: column;
    }

    .materials-list ul {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile Header Style Swap */
    .logo h1 {
        color: #e8f2ff;
        font-size: 0.9rem;
        font-weight: 300;
        margin-bottom: 0.2rem;
    }

    .tagline {
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
    }

    /* Mobile Hero Section Adjustments */
    .hero {
        min-height: 70vh;
        background-position: center right;
        align-items: flex-end;
        padding: 2rem 0;
    }

    .hero .container {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 1rem 1rem 1rem;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-hero {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card, .feature-card {
        padding: 1.5rem;
    }

    .btn-primary, .btn-hero, .btn-contact {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth scrolling for better UX */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #4facfe;
    outline-offset: 2px;
}

/* Social Media Float */
.social-media-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    animation: fadeInUp 1s ease-out 1s both;
}

/* iOS Safari Fix - Simplest approach that works */
@media screen and (max-width: 1024px) {
    /* Remove background-attachment fixed on mobile to prevent iOS conflicts */
    .hero, .contact {
        background-attachment: scroll !important;
    }

    /* Force proper fixed positioning on mobile */
    .social-media-float {
        position: fixed !important;
        bottom: 15px !important;
        right: 15px !important;
        top: auto !important;
        left: auto !important;
        z-index: 999999 !important;
        transform: translate3d(0, 0, 0) !important;
        -webkit-transform: translate3d(0, 0, 0) !important;
    }
}

@media screen and (max-width: 480px) {
    .social-media-float {
        bottom: 12px !important;
        right: 12px !important;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.social-link.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

/* Mobile adjustments for social media float */
@media (max-width: 768px) {
    .social-media-float {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .social-media-float {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link img {
        width: 22px;
        height: 22px;
    }
}

/* Print styles */
@media print {
    .header, .footer {
        background: none !important;
        color: #333 !important;
    }

    .btn-primary, .btn-hero, .btn-contact {
        background: none !important;
        color: #333 !important;
        border: 1px solid #333;
    }

    .social-media-float {
        display: none !important;
    }
}
