/* =========================================
   Sri Sai Automobiles - Premium Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-blue: #0A1931;
    --secondary-blue: #150E56;
    --accent-blue: #189AB4;
    --metallic-silver: #D3D3D3;
    --light-silver: #F5F5F5;
    --white: #FFFFFF;
    --dark-text: #333333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo-container img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-blue);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(10, 25, 49, 0.2);
    transition: var(--transition) !important;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 25, 49, 0.3);
}

.book-now-btn::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 25, 49, 0.7), rgba(10, 25, 49, 0.8)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
    text-align: center;
    color: var(--white);
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: -webkit-linear-gradient(var(--white), var(--metallic-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-silver);
}

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

.btn-primary {
    background: var(--accent-blue);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-blue);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--white);
}

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

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
.section-padding {
    padding: 50px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background: var(--light-silver);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: floatImage 6s ease-in-out infinite;
}

.about-image:hover {
    animation-play-state: paused;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-features {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateX(-30px);
}

.is-visible .about-features li {
    animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.is-visible .about-features li:nth-child(1) { animation-delay: 0.2s; }
.is-visible .about-features li:nth-child(2) { animation-delay: 0.4s; }
.is-visible .about-features li:nth-child(3) { animation-delay: 0.6s; }

.about-features li i {
    color: var(--accent-blue);
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}

.about-features li:hover i {
    transform: scale(1.2) rotate(360deg);
}

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

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    background: var(--white);
}

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

.service-card {
    background: var(--light-silver);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 25, 49, 0.15);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: #666;
    transition: var(--transition);
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-choose-us {
    background: var(--white);
}

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

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: var(--light-silver);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

/* Unique Animation for feature boxes */
.feature-box.animate-on-scroll {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: none; /* Override default transition to use keyframes */
}

.feature-box.animate-on-scroll.is-visible {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Staggered animation delays for the grid items */
.feature-box:nth-child(1).is-visible { animation-delay: 0.1s; }
.feature-box:nth-child(2).is-visible { animation-delay: 0.2s; }
.feature-box:nth-child(3).is-visible { animation-delay: 0.3s; }
.feature-box:nth-child(4).is-visible { animation-delay: 0.4s; }
.feature-box:nth-child(5).is-visible { animation-delay: 0.5s; }
.feature-box:nth-child(6).is-visible { animation-delay: 0.6s; }

.feature-box:hover {
    background: var(--white);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px rgba(24, 154, 180, 0.1);
    transform: translateY(-10px) !important;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.05), rgba(24, 154, 180, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--primary-blue);
    transform: rotateY(360deg);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* =========================================
   OUR WORK SECTION
   ========================================= */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-overlay i {
    color: var(--white);
    font-size: 3rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover .work-overlay i {
    transform: scale(1);
}

/* Image Modal (Lightbox) */
.image-modal {
    visibility: hidden;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 25, 49, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-blue);
    text-decoration: none;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media only screen and (max-width: 700px){
    .modal-content {
        width: 95%;
    }
}

/* =========================================
   TESTIMONIAL SECTION
   ========================================= */
.testimonial-section {
    background: var(--white);
    overflow: hidden;
}

.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    cursor: grab;
}

.testimonial-slider-container:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--light-silver);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.testimonial-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 25, 49, 0.1);
    background: var(--white);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(24, 154, 180, 0.1);
}

.client-review {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
}

.client-details h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.client-details span {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    background: var(--white);
    color: var(--dark-text);
}

.gallery-section .section-title h2 {
    color: var(--primary-blue);
}

.gallery-section .section-title p {
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 49, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: var(--light-silver);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.info-item h4 {
    margin-bottom: 5px;
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(24, 154, 180, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-blue);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: #050c18;
    color: var(--light-silver);
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Footer animation overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: slideLine 4s infinite linear;
}

@keyframes slideLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
    padding: 0 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #8c92a1;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a::before {
    content: '\f101'; /* FontAwesome angle double right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    transform: translateX(15px);
}

.footer-col ul li a:hover::before {
    left: -20px;
    opacity: 1;
}

.footer-bottom {
    background: #02060f;
    padding: 20px;
    margin-top: 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
}

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    z-index: -1;
    animation: ripple 2s infinite ease-in-out;
}

.phone-btn {
    background-color: #2A71E3;
}
.phone-btn::before {
    border: 2px solid #2A71E3;
}

.whatsapp-btn {
    background-color: #25D366;
}
.whatsapp-btn::before {
    border: 2px solid #25D366;
    animation-delay: 1s;
}

.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: var(--white);
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}
