/* ========================================
   MPWPCL - Complete CSS Stylesheet
   Design inspired by TRIF.in
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --primary: #e30016;

    --primary-light: hsl(15, 60%, 45%);
    --primary-dark: hsl(15, 60%, 25%);
    --primary-foreground: hsl(0, 0%, 100%);

    --accent: hsl(35, 85%, 55%);
    --accent-foreground: hsl(20, 10%, 15%);

    --background: hsl(0, 0%, 100%);
    --foreground: hsl(20, 10%, 15%);

    --card: hsl(30, 20%, 99%);
    --card-foreground: hsl(20, 10%, 15%);

    --secondary: hsl(30, 30%, 96%);
    --secondary-foreground: hsl(20, 10%, 25%);

    --muted: hsl(30, 15%, 95%);
    --muted-foreground: hsl(20, 10%, 45%);

    --border: hsl(30, 20%, 90%);
    --input: hsl(30, 20%, 90%);

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(20, 10%, 15%, 0.08);
    --shadow-elevated: 0 10px 40px -10px hsla(20, 10%, 15%, 0.12);
    --shadow-card: 0 2px 12px -2px hsla(20, 10%, 15%, 0.06);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Font Families */
    --font-display: "Nunito", sans-serif;
    --font-body: "Red Hat Display", sans-serif;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background-color: hsla(15, 60%, 35%, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 600px;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #e30016 0%, #8f3e24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-foreground);
    background: linear-gradient(90deg, #8f3e24, #e30016);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 14px -3px hsla(15, 60%, 35%, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -3px hsla(15, 60%, 35%, 0.5);
}

.btn-hero svg {
    width: 18px;
    height: 18px;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #8f3e24, #e30016) border-box;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.btn-outline-hero:hover {
    color: var(--primary-foreground);
    background: linear-gradient(135deg, #8f3e24 0%, #e30016 100%);
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.logo-text {
    display: block;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
}

.logo-text p {
    font-size: 9px;
    color: var(--muted-foreground);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(20, 10%, 15%, 0.8);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: hsla(20, 10%, 15%, 0.8);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

/* Header CTA */
.header-cta {
    display: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: hsla(20, 10%, 15%, 0.8);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: hsla(20, 10%, 15%, 0.8);
    transition: color var(--transition-fast);
}

.mobile-dropdown-btn:hover {
    color: var(--primary);
}

.mobile-dropdown-btn .dropdown-icon {
    transition: transform var(--transition-fast);
}

.mobile-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid hsla(15, 60%, 35%, 0.2);
    margin-left: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: hsla(20, 10%, 15%, 0.7);
    transition: color var(--transition-fast);
}

.mobile-dropdown-item:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, hsl(30, 30%, 98%) 0%, hsl(30, 20%, 95%) 100%);
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background-color: hsla(15, 60%, 35%, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-image-wrapper img {
        height: 500px;
    }
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(15, 60%, 35%, 0.3) 0%, transparent 50%);
}

.hero-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
}

@media (min-width: 768px) {
    .hero-floating-card {
        left: -2rem;
    }
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: hsla(15, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.floating-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========== STATS SECTION ========== */
.stats {
    padding: 4rem 0;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .stats {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .stats {
        padding: 8rem 0;
    }
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-header {
        margin-bottom: 4rem;
    }
}

.stats-header .section-description {
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    position: relative;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid hsla(30, 20%, 90%, 0.5);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, rgb(227, 0, 22) 0%, rgb(143, 62, 36) 100%)
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: hsla(15, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 4rem 0;
    background-color: var(--secondary);
}

@media (min-width: 768px) {
    .about {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-image-wrapper img {
        height: 500px;
    }
}

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    padding: 1.25rem 1.5rem;
   background: linear-gradient(90deg, #8f3e24, #e30016);
    color: var(--primary-foreground);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-elevated);
}

@media (min-width: 768px) {
    .about-experience-badge {
        right: -1rem;
    }
}

.experience-years {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.experience-text {
    display: block;
    font-size: 0.875rem;
}

.about-content .section-title {
    margin-top: 0.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 1.125rem;
    }
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vm-card {
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.vm-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: hsla(15, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vm-icon svg {
    width: 24px;
    height: 24px;
}

.vm-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.vm-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== SUKHTAVA SECTION ========== */
.sukhtava {
    padding: 4rem 0;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .sukhtava {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .sukhtava {
        padding: 8rem 0;
    }
}

.sukhtava-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .sukhtava-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.sukhtava-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1rem;
}

.sukhtava-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .sukhtava-description {
        font-size: 1.125rem;
    }
}

.sukhtava-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sukhtava-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sukhtava-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: hsla(15, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.sukhtava-feature-icon svg {
    width: 24px;
    height: 24px;
}

.sukhtava-feature-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.sukhtava-feature-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.sukhtava-image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .sukhtava-image {
        order: 0;
    }
}

.sukhtava-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.sukhtava-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .sukhtava-image-wrapper img {
        height: 500px;
    }
}

.sukhtava-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-elevated);
    white-space: nowrap;
}

.sukhtava-badge svg {
    width: 18px;
    height: 18px;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 4rem 0;
    background-color: var(--secondary);
}

@media (min-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-description {
        font-size: 1.125rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: hsla(15, 60%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item-text h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--background);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--foreground);
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(15, 60%, 35%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========== FOOTER ========== */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--foreground);
    color: hsla(0, 0%, 100%, 0.9);
}

@media (min-width: 768px) {
    .footer {
        padding: 5rem 0 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-icon span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

.footer-brand .logo-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-brand .logo-text p {
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-description {
    font-size: 0.9375rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(0, 0%, 100%, 0.8);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations - add via JS */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}