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

:root {
    --color-black: #000000;
    --color-purple: #9929EA;
    --color-pink: #FF5FCF;
    --color-yellow: #FAEB92;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    color: var(--color-gray-900);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transition: all 0.3s;
    background: transparent;
    padding: 1.5rem 0;
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-white);
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--color-yellow);
}

.logo span {
    font-weight: 400;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-yellow);
}

.cta-btn {
    padding: 0.5rem 1.5rem;
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--color-purple);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-content a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu-content a:hover {
    color: var(--color-yellow);
}

.cta-btn-mobile {
    padding: 1rem 2rem;
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn-mobile:hover {
    background: var(--color-purple);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-text {
    animation: fadeIn 1s ease-out;
}

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

.hero-subtitle {
    display: inline-block;
    color: var(--color-yellow);
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-title span {
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--color-gray-200);
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--color-purple);
    box-shadow: 0 10px 30px rgba(153, 41, 234, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--color-yellow);
    color: var(--color-black);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-yellow);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: var(--color-yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 12px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--color-purple);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-black);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title strong {
    font-weight: 400;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.75;
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    text-align: left;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--color-gray-700);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    padding: 0.75rem 1.5rem;
    background: var(--color-black);
    color: var(--color-yellow);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.about-image-container {
    position: relative;
}

.about-image {
    aspect-ratio: 4/5;
    background: var(--color-gray-200);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.about-quote {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--color-purple);
    color: var(--color-white);
    padding: 2rem;
    max-width: 20rem;
}

.about-quote p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.about-quote span {
    color: var(--color-yellow);
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--color-pink);
}

.stat-card svg {
    color: var(--color-purple);
    margin: 0 auto 1rem;
    transition: color 0.3s;
}

.stat-card:hover svg {
    color: var(--color-pink);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, var(--color-gray-50), var(--color-white));
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border: 1px solid var(--color-gray-100);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--color-pink);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--color-purple);
}

.service-description {
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-link {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-100);
}

.service-link button {
    background: none;
    border: none;
    color: var(--color-pink);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.service-link button:hover {
    color: var(--color-purple);
}

.service-link button span {
    transition: transform 0.3s;
}

.service-link button:hover span {
    transform: translateX(4px);
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-box {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 2rem 3rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.cta-box button {
    background: none;
    border: none;
    color: var(--color-yellow);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.cta-box button:hover {
    color: var(--color-pink);
}

/* Portfolio Section */
.portfolio-section {
    background: var(--color-white);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: var(--color-gray-200);
}

.filter-btn.active {
    background: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(255, 95, 207, 0.3);
}

.portfolio-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-gray-100);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--color-white);
}

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

.portfolio-category {
    font-size: 0.75rem;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--color-pink);
    transform: scale(1.1);
}

.lightbox-content {
    background: var(--color-white);
    max-width: 1200px;
    width: 100%;
    display: grid;
}

@media (min-width: 1024px) {
    .lightbox-content {
        grid-template-columns: 1fr 1fr;
    }
}

.lightbox-image {
    aspect-ratio: 1;
}

@media (min-width: 1024px) {
    .lightbox-image {
        aspect-ratio: auto;
    }
}

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

.lightbox-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .lightbox-info {
        padding: 3rem;
    }
}

.lightbox-category {
    display: inline-block;
    color: var(--color-purple);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(153, 41, 234, 0.1);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.lightbox-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .lightbox-title {
        font-size: 2.5rem;
    }
}

.lightbox-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.lightbox-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lightbox-meta-item svg {
    color: var(--color-pink);
}

.lightbox-description {
    color: var(--color-gray-700);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.lightbox-cta {
    margin-top: auto;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50));
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    pointer-events: none;
}

.testimonial-card:hover::after {
    border-color: var(--color-pink);
}

.testimonial-quote-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-pink);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
}

.star.filled {
    color: var(--color-yellow);
    fill: var(--color-yellow);
}

.star.empty {
    color: var(--color-gray-300);
}

.testimonial-content {
    color: var(--color-gray-700);
    line-height: 1.75;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-100);
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(153, 41, 234, 0.2);
}

.testimonial-name {
    font-weight: 500;
    color: var(--color-black);
    font-size: 1.125rem;
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.testimonials-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-box-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
    padding: 2rem 3rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.cta-box-gradient button {
    background: none;
    border: none;
    color: var(--color-yellow);
    font-weight: 500;
    font-size: 1.125rem;
    cursor: pointer;
    transition: color 0.3s;
}

.cta-box-gradient button:hover {
    color: var(--color-white);
}

/* Contact Section */
.contact-section {
    background: var(--color-white);
}

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

.contact-form {
    background: var(--color-gray-50);
    padding: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 3rem;
    }
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(255, 95, 207, 0.2);
}

.form-group textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--color-purple);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-info-card h3 {
    font-weight: 500;
    color: var(--color-black);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--color-gray-600);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--color-pink);
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
}

.footer-main {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-gray-800);
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr auto auto auto;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-weight: 400;
    color: var(--color-yellow);
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-pink);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--color-pink);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul li {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.footer-links ul a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul a:hover {
    color: var(--color-pink);
}

.footer-social {
    max-width: 300px;
}

.footer-social h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-social p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--color-pink);
    transform: scale(1.1);
}

.social-icons svg {
    color: var(--color-white);
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    padding: 0.25rem 0.75rem;
    background: var(--color-gray-800);
    color: var(--color-yellow);
    font-size: 0.75rem;
}

.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.legal-links button {
    background: none;
    border: none;
    color: var(--color-gray-500);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s;
}

.legal-links button:hover {
    color: var(--color-pink);
}

.legal-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-content {
    background: var(--color-white);
    max-width: 1200px;
    width: 100%;
    margin: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.legal-modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
    padding: 2rem;
}

@media (min-width: 1024px) {
    .legal-modal-header {
        padding: 2rem 3rem;
    }
}

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .legal-modal-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}

.legal-modal-close:hover {
    color: var(--color-yellow);
    transform: scale(1.1);
}

.legal-modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 3rem;
}

.legal-modal-title svg {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.legal-modal-title h2 {
    font-size: 2rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .legal-modal-title h2 {
        font-size: 2.5rem;
    }
}

.legal-modal-title p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.legal-modal-body {
    padding: 2rem;
    max-width: none;
}

@media (min-width: 1024px) {
    .legal-modal-body {
        padding: 3rem;
    }
}

.legal-modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--color-gray-50);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .legal-modal-footer {
        padding: 2rem 3rem;
    }
}

.legal-modal-footer p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.legal-modal-footer a {
    color: var(--color-pink);
    text-decoration: none;
}

.legal-modal-footer a:hover {
    text-decoration: underline;
}

/* Legal Content Styles */
.legal-section {
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-gray-900);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--color-gray-700);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--color-gray-700);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.legal-highlight {
    background: linear-gradient(to right, rgba(153, 41, 234, 0.1), rgba(255, 95, 207, 0.1));
    padding: 1.5rem;
    border-left: 4px solid var(--color-purple);
    margin: 1.5rem 0;
}

.legal-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.legal-card {
    background: var(--color-gray-50);
    padding: 1rem;
}

.legal-card h5 {
    font-weight: 500;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.legal-card p {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.legal-contact-box {
    background: linear-gradient(135deg, var(--color-purple), var(--color-pink));
    color: var(--color-white);
    padding: 1.5rem;
    margin-top: 2rem;
}

.legal-contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.legal-contact-box p {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.legal-contact-box a {
    color: var(--color-white);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Smooth Transitions */
button,
a {
    transition: all 0.3s ease;
}
