/* =========================================================
   Creative Vaults
   Global Styles
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   Container
   ========================================================= */

.container {
    width: min(100% - 2rem, 1280px);
    margin-inline: auto;
}


/* =========================================================
   Gradient Text
   ========================================================= */

.text-gradient {
    background: linear-gradient(
        to right,
        #9333ea,
        #ec4899
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* =========================================================
   Navbar
   ========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: #ffffff;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
}

.logo span {
    color: #1f2937;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #faf5ff;
    color: #9333ea;
}

.nav-link.active {
    background: #9333ea;
    color: #ffffff;
}


/* =========================================================
   Mobile Navigation
   ========================================================= */

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: #374151;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(
        to right,
        #9333ea,
        #ec4899
    );
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.25);
}

.btn-secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   Sections
   ========================================================= */

.section {
    padding: 80px 0;
}

.section-white {
    background: #ffffff;
}

.section-light {
    background: #f9fafb;
}


/* =========================================================
   Hero
   ========================================================= */

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(
        135deg,
        #faf5ff,
        #fdf2f8
    );
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #6b7280;
}


/* =========================================================
   Section Headers
   ========================================================= */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #6b7280;
}


/* =========================================================
   Grid
   ========================================================= */

.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


/* =========================================================
   Cards
   ========================================================= */

.card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.card-icon {
    color: #9333ea;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: #6b7280;
}

/* =========================================================
   Home Page
   ========================================================= */

.home-hero {
    min-height: 700px;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at top right,
            rgba(236, 72, 153, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(147, 51, 234, 0.12),
            transparent 35%
        ),
        #ffffff;
}

.home-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #faf5ff;
    color: #9333ea;
    font-size: 0.9rem;
    font-weight: 600;
}

.home-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.home-hero p {
    max-width: 760px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}


/* Feature Cards */

.feature-card {
    height: 100%;
}

.feature-card .card-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.icon-large {
    width: 32px;
    height: 32px;
}


/* Service Preview */

.service-preview {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.service-preview-icon {
    flex-shrink: 0;
    color: #9333ea;
}

.service-preview-icon svg {
    width: 48px;
    height: 48px;
}

.service-preview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-preview p {
    color: #6b7280;
    line-height: 1.7;
}


/* Home CTA */

.home-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.home-cta p {
    color: #6b7280;
    font-size: 1.25rem;
    margin-bottom: 40px;
}


/* Responsive */

@media (max-width: 768px) {

    .home-hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .home-hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .service-preview {
        gap: 16px;
    }

}

@media (max-width: 480px) {

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .service-preview {
        flex-direction: column;
    }

}


/* =========================================================
   Services
   ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-description {
    color: #6b7280;
    flex-grow: 1;
}

.service-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    color: #9333ea;
    font-size: 1.1rem;
    font-weight: 600;
}

.learn-more {
    display: inline-block;
    margin-top: 12px;
    color: #9333ea;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    transform: translateX(8px);
}


/* =========================================================
   Category Navigation
   ========================================================= */

.category-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.category-button {
    padding: 10px 24px;
    border: none;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button:hover {
    background: #9333ea;
    color: #ffffff;
}


/* =========================================================
   Stats
   ========================================================= */

.stats-section {
    padding: 64px 0;
    color: #ffffff;
    background: linear-gradient(
        to right,
        #9333ea,
        #ec4899
    );
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(
        to right,
        #9333ea,
        #ec4899
    );
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}


/* =========================================================
   Footer
   ========================================================= */

.footer {
    background: #111827;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer h3,
.footer h4 {
    margin-bottom: 16px;
}

.footer p,
.footer a,
.footer li {
    color: #9ca3af;
}

.footer a:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {

    .grid-3,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: center;
        background: #ffffff;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu-links {
        width: min(100% - 2rem, 400px);
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-menu-link {
        display: block;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        background: #9333ea;
        color: #ffffff;
    }

    .grid-3,
    .grid-2,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .section {
        padding: 64px 0;
    }

    .cta {
        padding: 32px 24px;
    }
}


@media (max-width: 480px) {

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

    .container {
        width: min(100% - 1.5rem, 1280px);
    }

}

/* =========================================================
   Footer
   ========================================================= */

.footer {
    background: #111827;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-image {
    width: 100px;
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 768px) {
    .footer-logo-image {
        width: 120px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-logo-image {
        width: 70px;
    }
}

/* .footer-logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
} */


/* Quick Links */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: #9ca3af;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}


/* Social Links */

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social a {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


/* Copyright */

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
}

.footer-heart {
    color: #ef4444;
    display: inline-block;
    margin: 0 4px;
    animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

}


/* =========================================================
   Footer Responsive
   ========================================================= */

@media (max-width: 1024px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        display: inline-block;
    }

    .footer-social {
        justify-content: center;
    }

}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-page {
    padding-top: 80px;
}


/* =========================================================
   Hero
   ========================================================= */

.services-hero {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #faf5ff 0%,
        #fdf2f8 100%
    );
}

.services-hero .section-header h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 24px;
}

.services-hero .section-header p {
    font-size: 1.25rem;
}

/* ========================================
ABOUT PAGE
======================================== */

.page-content {
padding-top: 80px;
}

/* ========================================
PAGE HERO
======================================== */

.page-hero {
background: linear-gradient(
135deg,
#faf5ff 0%,
#fdf2f8 100%
);

padding: 80px 20px;

}

.section-heading {
text-align: center;
}

.page-title {
font-size: 3.75rem;
font-weight: 700;
margin: 0 0 24px;
}

.page-subtitle {
font-size: 1.25rem;
color: #4b5563;
max-width: 768px;
margin: 0 auto;
line-height: 1.7;

}

/* ========================================
CONTAINER
======================================== */

.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding-left: 20px;
padding-right: 20px;

}

/* ========================================
SECTION
======================================== */

.section-padding {
padding-top: 80px;
padding-bottom: 80px;
}

.section-title {
font-size: 2rem;
font-weight: 700;
color: #1f2937;

margin-bottom: 24px;

}

.section-text {
color: #4b5563;
font-size: 1rem;
line-height: 1.8;

margin-bottom: 16px;

}

/* ========================================
ABOUT GRID
======================================== */

.about-grid {
display: grid;

grid-template-columns: repeat(2, 1fr);

gap: 48px;

align-items: center;

}

/* ========================================
STATISTICS
======================================== */

.about-stats {
display: grid;

grid-template-columns: repeat(2, 1fr);

gap: 16px;
}

.stat-card {
padding: 24px;

border-radius: 16px;

text-align: center;

transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}

.stat-card:hover {
transform: translateY(-6px);

box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08);

}

/* Purple Card */

.stat-card-purple {
background: #f3e8ff;
}

.stat-card-purple .stat-icon,
.stat-card-purple .stat-number {
color: #9333ea;
}

/* Pink Card */

.stat-card-pink {
background: #fce7f3;
}

.stat-card-pink .stat-icon,
.stat-card-pink .stat-number {
color: #ec4899;
}

/* Icon */

.stat-icon {
font-size: 32px;
margin-bottom: 8px;

}

/* Number */

.stat-number {
font-size: 2rem;
font-weight: 700;
margin-bottom: 4px;
}

/* Label */

.stat-label {
color: #4b5563;
font-size: 1rem;

}

/* ========================================
TEXT GRADIENT
======================================== */

.text-gradient {
background: linear-gradient(
90deg,
#9333ea,
#ec4899
);

-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

background-clip: text;


}

/* ========================================
SIMPLE ANIMATION
======================================== */

.animate-section {
animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {


from {
    opacity: 0;

    transform: translateY(20px);
}

to {
    opacity: 1;

    transform: translateY(0);
}


}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 768px) {


.page-content {
    padding-top: 70px;
}

.page-hero {
    padding: 60px 20px;
}

.page-title {
    font-size: 2.75rem;
}

.page-subtitle {
    font-size: 1.1rem;
}

.about-grid {
    grid-template-columns: 1fr;

    gap: 40px;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

}

@media (max-width: 480px) {


.page-title {
    font-size: 2.25rem;
}

.about-stats {
    grid-template-columns: 1fr;
}

}


/* ========================================
   OUR PEOPLE / OUR APPROACH
======================================== */

.about-mission {
    background: #f9fafb;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.mission-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}


/* Icon container */
.mission-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #9333ea,
        #ec4899
    );

    box-shadow:
        0 10px 25px rgba(147, 51, 234, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Actual Font Awesome icon */
.mission-icon i {
    display: block;

    font-size: 36px;

    line-height: 1;

    color: #ffffff;

    width: auto;
    height: auto;
}


/* Icon hover */
.mission-card:hover .mission-icon {
    transform: scale(1.08);

    box-shadow:
        0 15px 30px rgba(147, 51, 234, 0.35);
}


/* Heading */
.mission-card h3 {
    margin: 0 0 14px;

    font-size: 24px;

    font-weight: 700;

    color: #1f2937;
}


/* Description */
.mission-card p {
    margin: 0;

    color: #6b7280;

    font-size: 16px;

    line-height: 1.7;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

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

    .mission-card {
        padding: 32px 24px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
    }

    .mission-icon i {
        font-size: 30px;
    }

}


/* =========================================================
   Services Section
   ========================================================= */

.services-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   Category Navigation
   ========================================================= */

.category-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 80px;
}

.category-navigation button {
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-navigation button:hover {
    background: #9333ea;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   Category
   ========================================================= */

.service-category {
    margin-bottom: 100px;
    scroll-margin-top: 100px;
}

.service-category h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}


/* =========================================================
   Service Grid
   ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* =========================================================
   Service Card
   ========================================================= */

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 370px;
    padding: 32px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    text-decoration: none;
    color: inherit;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #e9d5ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   Icons
   ========================================================= */

.service-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 56px;
    height: 56px;

    margin-bottom: 24px;

    color: #9333ea;

    transition: transform 0.3s ease;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

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

.cpanel-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 10px;

    background: #9333ea;
    color: #ffffff;

    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   Service Card Content
   ========================================================= */

.service-card h3 {
    margin-bottom: 12px;

    color: #1f2937;

    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.service-card > p {
    flex-grow: 1;

    margin-bottom: 20px;

    color: #6b7280;

    line-height: 1.7;
}


/* =========================================================
   Service Footer
   ========================================================= */

.service-footer {
    padding-top: 16px;

    border-top: 1px solid #f3f4f6;
}

.service-footer strong {
    display: block;

    color: #9333ea;

    font-size: 1.1rem;
    font-weight: 600;
}

.service-footer span {
    display: inline-block;

    margin-top: 12px;

    color: #9333ea;

    font-weight: 500;

    transition: transform 0.3s ease;
}

.service-card:hover .service-footer span {
    transform: translateX(8px);
}


/* =========================================================
   CTA
   ========================================================= */

.services-cta {
    margin-top: 80px;
    padding: 64px 32px;

    border-radius: 16px;

    background: linear-gradient(
        90deg,
        #9333ea,
        #db2777
    );

    color: #ffffff;

    text-align: center;
}

.services-cta h2 {
    margin-bottom: 16px;

    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
}

.services-cta p {
    max-width: 700px;

    margin: 0 auto 32px;

    font-size: 1.25rem;
    line-height: 1.7;

    opacity: 0.9;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .services-hero {
        padding: 80px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .category-navigation {
        margin-bottom: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-category {
        margin-bottom: 80px;
    }

    .services-cta {
        padding: 48px 24px;
    }

}


@media (max-width: 480px) {

    .category-navigation {
        flex-direction: column;
        width: 100%;
    }

    .category-navigation button {
        width: 100%;
    }

    .service-card {
        padding: 24px;
    }

}

/* ========================================
CONTACT PAGE
======================================== */

.contact-section {
background: #ffffff;
}

.contact-grid {
display: grid;

grid-template-columns:
    repeat(2, minmax(0, 1fr));

gap: 48px;

align-items: start;

}

/* ========================================
CONTACT INFORMATION
======================================== */

.contact-information {
padding-right: 20px;
}

.contact-item {
display: flex;

align-items: flex-start;

gap: 16px;

margin-bottom: 32px;

}

.contact-icon {
width: 52px;
height: 52px;

flex-shrink: 0;

display: flex;

align-items: center;
justify-content: center;

border-radius: 10px;

background: #f3e8ff;

color: #9333ea;

font-size: 20px;

transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}

.contact-item:hover .contact-icon {
background: #9333ea;
color: #ffffff;

transform: scale(1.05);

}

.contact-item-content h3 {
margin: 0 0 5px;
font-size: 18px;

font-weight: 600;

color: #1f2937;

}

.contact-item-content a {
color: #6b7280;
line-height: 1.7;

transition: color 0.3s ease;

}

.contact-item-content a:hover {
color: #9333ea;
}

/* ========================================
BUSINESS HOURS
======================================== */

.business-hours {
margin-top: 32px;

padding: 24px;

background: #f9fafb;

border-radius: 12px;


}

.business-hours h3 {
margin: 0 0 16px;
font-size: 18px;

font-weight: 600;

color: #1f2937;

}

.business-hours-row {
display: flex;
justify-content: space-between;

gap: 20px;

padding: 6px 0;

color: #6b7280;

font-size: 15px;

}

/* ========================================
CONTACT FORM CARD
======================================== */

.contact-form-wrapper {
background: #ffffff;
padding: 32px;

border-radius: 20px;

border: 1px solid #f3f4f6;

box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);

transition: box-shadow 0.3s ease;

}

.contact-form-wrapper:hover {
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.10);
}

.contact-form-title {
margin: 0 0 24px;

font-size: 26px;

font-weight: 700;

color: #1f2937;

}

/* ========================================
FORM
======================================== */

.contact-form {
display: flex;

flex-direction: column;

gap: 20px;

}

.form-group {
position: relative;
}

.input-wrapper {
position: relative;
}

.input-icon {
position: absolute;
left: 18px;

top: 50%;

transform: translateY(-50%);

color: #9ca3af;

font-size: 16px;

z-index: 2;

pointer-events: none;

}

.textarea-icon {
top: 24px;

transform: none;

}

.contact-form input,
.contact-form textarea {
width: 100%;

border: 2px solid #e5e7eb;

border-radius: 12px;

background: #ffffff;

color: #1f2937;

font-family: inherit;

font-size: 16px;

transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

outline: none;

}

.contact-form input {
height: 58px;

padding:
    0 16px 0 48px;

}

.contact-form textarea {
padding:
16px 16px 16px 48px;
resize: vertical;

min-height: 150px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #a855f7;

box-shadow:
    0 0 0 4px rgba(168, 85, 247, 0.12);

}

.contact-form input:focus + .input-icon {
color: #9333ea;
}

/* ========================================
VALIDATION
======================================== */

.contact-form input.input-error,
.contact-form textarea.input-error {
border-color: #ef4444;
background: #fef2f2;

}

.field-error {
margin: 6px 0 0;
color: #ef4444;

font-size: 13px;

}

.character-counter {
text-align: right;
margin-top: 5px;

color: #9ca3af;

font-size: 12px;

}

/* ========================================
SUBMIT BUTTON
======================================== */

.contact-submit-button {
width: 100%;

border: none;

padding: 16px;

border-radius: 12px;

background:
    linear-gradient(
        90deg,
        #9333ea,
        #ec4899
    );

color: #ffffff;

font-family: inherit;

font-size: 18px;

font-weight: 600;

cursor: pointer;

transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

}

.contact-submit-button:hover {
transform: translateY(-2px);
box-shadow:
    0 10px 25px rgba(147, 51, 234, 0.25);

}

.contact-submit-button:active {
transform: scale(0.98);
}

/* ========================================
STATUS MESSAGES
======================================== */

.form-message {
display: flex;

align-items: center;

gap: 10px;

padding: 16px;

margin-bottom: 20px;

border-radius: 8px;

font-size: 14px;

}

.form-message i {
font-size: 18px;

flex-shrink: 0;

}

.form-success {
background: #dcfce7;

color: #15803d;

border-left:
    4px solid #22c55e;

}

.form-error {
background: #fee2e2;

color: #b91c1c;

border-left:
    4px solid #ef4444;

}

/* ========================================
MAP
======================================== */

.map-section {
padding-bottom: 80px;
}

.map-wrapper {
height: 384px;

overflow: hidden;

border-radius: 20px;

background: #e5e7eb;

}

.map-wrapper iframe {
width: 100%;

height: 100%;

display: block;

border: 0;

}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 900px) {

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

    gap: 40px;
}

.contact-information {
    padding-right: 0;
}

}

@media (max-width: 600px) {

.contact-form-wrapper {
    padding: 24px 20px;
}

.business-hours-row {
    flex-direction: column;

    gap: 2px;
}

.contact-item {
    gap: 12px;
}

.map-wrapper {
    height: 320px;
}


}
