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

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
    background: #ffffff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #007BFF;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e6f2ff, #f0f8ff);
    color: #007BFF;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #007BFF;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: white;
    border-color: #007BFF;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 212, 255, 0.15));
    color: #0056b3;
    border: 2px solid rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(6px);
}

.btn-tertiary:hover {
    border-color: #007BFF;
    color: #003d80;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}

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

.hero-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #007BFF 0%, #00d4ff 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.2);
}

.hero-image .hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

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

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 46px auto 0;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e6f2ff, #f0f8ff);
    color: #007BFF;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

/* About Section */
#about {
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007BFF, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e6f2ff, #f0f8ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.about-card p {
    color: #666;
    line-height: 1.7;
}

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

.services-highlight {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.services-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.18);
    aspect-ratio: 5 / 4;
}

.services-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 86, 179, 0.55) 100%);
    pointer-events: none;
}

.services-visual:hover img {
    transform: scale(1.04);
}

.services-visual-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: white;
    color: #007BFF;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.services-pricing h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.services-pricing-subtitle {
    color: #5c6f7d;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.6rem 2rem;
    background: white;
    border-radius: 24px;
    border: 1px solid #e6f1ff;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.08);
}

.pricing-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}

.pricing-item p {
    color: #6c7a89;
    margin: 0;
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007BFF;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 212, 255, 0.12));
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    white-space: nowrap;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid #e5ecff;
    transition: all 0.4s;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 1.2fr;
    gap: 2.2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    border-color: #007BFF;
    box-shadow: 0 26px 60px rgba(0, 123, 255, 0.14);
    transform: translateY(-8px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #edf5ff, #f6f9ff);
    height: clamp(200px, 22vw, 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #bcd4ff;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-media-placeholder {
    color: #4b6fbf;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.service-media-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    color: white;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.25);
}

.service-content h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-content p {
    color: #59677a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    background: #e6f2ff;
    color: #0056b3;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

.service-turnaround {
    background: #f1f5f9;
    color: #3b4c5c;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-offer {
    background: rgba(0, 123, 255, 0.08);
    color: #0b407a;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #007BFF;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s, color 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: #0056b3;
}

.pricing-offers-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offers-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    border-radius: 28px;
    border: 1px solid #e5ecff;
    padding: 2.2rem;
    box-shadow: 0 18px 45px rgba(0, 123, 255, 0.12);
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.4rem 1.6rem;
    background: white;
    border-radius: 22px;
    border: 1px solid #e5ecff;
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.08);
}

.pricing-list.sm li {
    padding: 1.2rem 1.4rem;
}

.pricing-list h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.pricing-list p {
    color: #5b6a7f;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.price-tag {
    background: rgba(0, 123, 255, 0.12);
    color: #0056b3;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.pricing-note {
    background: rgba(0, 123, 255, 0.08);
    color: #0b407a;
    padding: 1.1rem 1.3rem;
    border-radius: 18px;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.pricing-cta {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    margin-top: 0.2rem;
}

.offer-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e8f0ff;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 123, 255, 0.18);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.offer-card h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.offer-card p {
    color: #5b6a7f;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.offer-cta {
    color: #0056b3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .service-card {
        grid-template-columns: minmax(280px, 340px) 1fr;
        min-height: 280px;
    }

    .service-media {
        height: 100%;
        min-height: 260px;
    }
}

@media (min-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-card {
        grid-template-columns: minmax(320px, 360px) 1fr;
    }
}

/* Why Choose Us */
#why-choose {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature {
    display: flex;
    gap: 2rem;
    align-items: start;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.25);
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #f0f0f0;
    position: relative;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: #007BFF;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.12);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007BFF, #00d4ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    border-radius: 40px;
    margin: 38px 3rem  ;
    padding: 6rem 4rem;
    color: white;
}

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

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item-content p {
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007BFF;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #007BFF;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-visual {
        margin-top: 1.5rem;
    }

    .hero-image { height: 380px; }
    .card-1 { top: 6%; right: 5%; }
    .card-2 { bottom: 8%; left: 5%; }
    .card-3 { display: none; }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .about-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-highlight {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-media {
        height: 200px;
    }

    #contact {
        margin: 30px 1.5rem;
        padding: 4rem 2.5rem;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-items {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .pricing-offers-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offers-column {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .offer-card {
        flex: 1 1 280px;
    }

    .services-visual {
        aspect-ratio: unset;
        height: 320px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .nav-container { padding: 0 1.25rem; }
    .hero-image { height: 260px; }
    .section-title { font-size: 2rem; }
    .section { padding: 3rem 1.5rem; }
    .services-visual {
        height: 260px;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        margin-top: 0.75rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-media {
        height: 100%;
    }

    .pricing-offers-layout {
        gap: 1.8rem;
    }

    #contact {
        margin: 24px 1rem;
        padding: 3rem 1.75rem;
        border-radius: 28px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-info > p {
        margin-bottom: 2rem;
    }

    .contact-items {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-item-content h4 {
        font-size: 1rem;
    }

    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-tag {
        margin-top: 0.75rem;
    }

    .offers-column {
        flex-direction: column;
    }

    .offer-card {
        flex: initial;
    }

    .pricing-cta {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 1.05rem;
    }
}
