        /* Contact Page Specific Styles */
        .contact-hero {
            padding: 5rem 6rem;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: 30px;
        }

        .contact-hero .left {
            flex: 1;
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .contact-hero .highlight {
            color: var(--primary-color);
        }

        .contact-hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.7;
        }

        .contact-hero .right {
            flex: 1;
            position: relative;
        }

        .contact-hero-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        /* Contact Methods */
        .contact-methods {
            padding: 5rem 6rem;
            background-color: var(--light-bg);
        }

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .method-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .method-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 60, 60, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .method-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .method-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .method-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .method-link {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .method-link:hover {
            color: #e63535;
            gap: 0.8rem;
        }


        /* Contact Form Section */
        .contact-form-section {
            padding: 5rem 6rem;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
            color: var(--text-light);
        }

        .containers {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .form-container {
            flex: 1;
        }

        .form-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .form-header p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .form-group {
            position: relative;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .form-group:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .form-group.floating label {
            position: absolute;
            left: 45px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px 15px 45px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1rem;
            border-radius: 8px;
        }

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

        .form-group.floating input:focus~label,
        .form-group.floating input:valid~label,
        .form-group.floating textarea:focus~label,
        .form-group.floating textarea:valid~label {
            top: 10px;
            transform: translateY(0);
            font-size: 0.8rem;
            color: var(--primary-color);
        }

        .submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: #e63535;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 60, 60, 0.2);
        }

        .submit-btn i {
            transition: all 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        .form-graphic {
            flex: 1;
            position: relative;
            min-height: 400px;
        }

        .form-graphic img {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 2;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 60, 60, 0.1);
            filter: blur(30px);
            z-index: 1;
        }

        .element-1 {
            width: 200px;
            height: 200px;
            top: 0;
            left: 0;
            animation: float 6s ease-in-out infinite;
        }

        .element-2 {
            width: 150px;
            height: 150px;
            bottom: 50px;
            right: 0;
            animation: float 10s ease-in-out infinite reverse;
        }

        .element-3 {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 30%;
            animation: float 12s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(20px, 20px);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }

            .form-graphic {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .contact-form-section {
                padding: 3rem 2rem;
            }
        }



        /* CTA Section */
        .cta-section {
            padding: 5rem 6rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, #e63535 100%);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-heading {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .book-a-call {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            background-color: white;
            color: var(--primary-color);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .book-a-call:hover {
            background-color: var(--dark-bg);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Clients Section */
        .clients-section {
            padding: 5rem 6rem;
            background-color: var(--light-bg);
            text-align: center;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-subtitle {
            display: block;
            font-size: 1rem;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .section-description {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            height: 60px;
            filter: grayscale(100%) contrast(40%);
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .client-logo:hover {
            filter: grayscale(0) contrast(100%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .contact-hero,
            .form-container {
                flex-direction: column;
            }

            .contact-hero .right {
                order: -1;
                margin-bottom: 2rem;
            }

            .form-graphic {
                display: none;
            }
        }

        @media (max-width: 768px) {

            .contact-hero,
            .contact-methods,
            .contact-form-section,
            .cta-section,
            .clients-section {
                padding: 3rem 2rem;
            }

            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .cta-heading {
                font-size: 2rem;
            }

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

            .client-logos {
                gap: 1.5rem;
            }

            .client-logo {
                height: 40px;
                max-width: 120px;
            }
        }


        /* Contact Hero CTA Buttons */
        .cta-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .cta {
            color: #fff;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            border-radius: 4px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            transform: scale(1);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
        }

        .cta:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: var(--primary-hover-color);
            color: var(--primary-color);
            outline: 1.5px solid var(--primary-color);
        }

        .cta.secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }

        .cta.secondary:hover {
            background-color: var(--primary-color);
            color: #fff;
            outline: none;
        }

        .cta i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .cta,
            .cta.secondary {
                width: 100%;
                padding: 0.8rem;
            }
        }



    /* Packages Section Styles */
    .service-packages {
        padding: 5rem 6rem;
        background-color: var(--light-bg);
    }

    .service-packages .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .service-packages .section-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .service-packages .section-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Category Tabs */
    .category-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        background: white;
        border: 1px solid #ddd;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tab-btn:hover {
        background: #f5f5f5;
    }

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

    /* Packages Grid */
    .packages-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .package-category {
        display: none;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        width: 100%;
    }

    .package-category.active {
        display: grid;
    }

    .package-card {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .package-card.popular {
        border: 2px solid var(--primary-color);
        transform: translateY(-10px);
    }

    .popular-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: var(--primary-color);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .package-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .package-card h3 span {
        color: var(--primary-color);
        font-weight: 700;
    }

    .package-card p {
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .package-features {
        margin: 1.5rem 0;
        padding-left: 0;
        list-style: none;
    }

    .package-features li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .package-features i {
        color: var(--primary-color);
        margin-top: 3px;
    }

    .package-footer {
        margin-top: 2rem;
        border-top: 1px solid #eee;
        padding-top: 1.5rem;
    }

    .rush-delivery {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .call-link {
        display: block;
        text-align: center;
        margin-top: 1rem;
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .service-packages {
            padding: 3rem 2rem;
        }
        
        .packages-container,
        .package-category {
            grid-template-columns: 1fr;
        }
    }


    .cta-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.7s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: white;
}

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

.cta-button.primary:hover {
    background: #e63535;
}
