/* ================================
   MAGRICH TEXTILE - MODERN UI
   Responsive & Luxury Design
   ================================ */

:root {
    --text-dark: #111;
    --text-muted: #666;
    --border-light: #e5e5e5;
    --bg-soft: #fafafa;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================================
   HEADER & NAVIGATION
   ===================================== */

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu li a {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--text-dark);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.lang-switcher:hover {
    border-color: var(--text-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =====================================
   HERO SLIDER - ENHANCED
   ===================================== */

.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 30px;
    animation: fadeInUp 1s ease forwards;
}

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

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    color: #e8e8e8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.hero-progress-bar {
    height: 100%;
    background: #fff;
    width: 0;
    transition: width 5s linear;
}

.hero-slide.active .hero-progress-bar {
    width: 100%;
}

/* Slider Dots - Enhanced */
.hero-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.hero-dots .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: var(--transition-base);
}

.hero-dots .dot:hover {
    border-color: #fff;
    transform: scale(1.2);
}

.hero-dots .dot.active {
    background: #fff;
    border-color: #fff;
}

.hero-dots .dot.active::before {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    z-index: 6;
    animation: scrollBounce 2s infinite;
    opacity: 0.9;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.scroll-down:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

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

/* =====================================
   BUTTON COMPONENT
   ===================================== */

.btn {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid var(--text-dark);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =====================================
   PRODUCT SPLIT SECTION
   ===================================== */

.product-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 80px auto;
}

.split-card {
    border: 1px solid var(--border-light);
    padding: 80px 40px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.split-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.split-card:hover::before {
    transform: translateY(0);
}

.split-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.split-card > * {
    position: relative;
    z-index: 1;
}

.split-card h3 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.split-card p {
    color: var(--text-muted);
    margin: 24px 0;
    line-height: 1.8;
    font-size: 15px;
}

/* =====================================
   SCROLLING TEXT BANNER
   ===================================== */

.scroll-banner {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    overflow: hidden;
    background: var(--bg-soft);
}

.scroll-text {
    white-space: nowrap;
    font-size: 13px;
    letter-spacing: 4px;
    color: #333;
    animation: scrollText 20s linear infinite;
    display: inline-block;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =====================================
   FEATURED PRODUCTS
   ===================================== */

.featured-products {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 4px;
    margin-bottom: 80px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.featured-card {
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.featured-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition-base);
}

.featured-card:hover .featured-image::before {
    opacity: 1;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-content {
    padding: 40px 30px;
    text-align: center;
}

.featured-content h3 {
    font-size: 19px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.featured-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.about-section {
    margin: 100px auto;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.about-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-section p {
    margin-top: 36px;
    color: var(--text-muted);
    line-height: 1.9;
    font-size: clamp(15px, 2vw, 17px);
}

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

.newsletter-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: clamp(20px, 3vw, 26px);
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 500;
}

.newsletter-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
}

.newsletter-form-wrap {
    display: flex;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    font-size: 14px;
    outline: none;
    transition: var(--transition-base);
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    white-space: nowrap;
}

/* =====================================
   FOOTER
   ===================================== */

.site-footer {
    background: #111;
    color: #ccc;
    padding: 100px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    font-weight: 500;
}

.footer-brand {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.footer-text {
    line-height: 1.8;
    color: #aaa;
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-col p {
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
}

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

.footer-social a {
    font-size: 13px;
    color: #aaa;
    border: 1px solid #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.footer-social a:hover {
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* =====================================
   UTILITY CLASSES
   ===================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-dots {
        right: 20px;
    }

    .product-split {
        gap: 30px;
        margin: 60px auto;
    }

    .split-card {
        padding: 60px 30px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    /* Header */
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 15px;
    }

    /* Hero */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-dots {
        flex-direction: row;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 90px;
        transform: translateX(-50%);
        gap: 12px;
    }

    .scroll-down {
        bottom: 30px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    /* Product Split */
    .product-split {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }

    .split-card {
        padding: 50px 25px;
    }

    /* Featured Products */
    .featured-products {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 50px;
        font-size: 22px;
        letter-spacing: 3px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-image {
        height: 280px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }

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

    .newsletter-form-wrap {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Footer */
    .site-footer {
        padding: 60px 0 0;
    }

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

    .footer-social {
        justify-content: flex-start;
    }

    /* About */
    .about-section {
        margin: 60px auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .split-card {
        padding: 40px 20px;
    }

    .split-card h3 {
        font-size: 18px;
    }

    .featured-content {
        padding: 30px 20px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 11px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
}



/* =====================================
   ABOUT PAGE - MODERN & RESPONSIVE
   ===================================== */

/* =====================================
   INNER HERO - ENHANCED
   ===================================== */
.inner-hero {
    padding: 160px 0 120px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--border-light) 50%,
        transparent 100%);
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease forwards;
}

.inner-hero p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

/* Breadcrumb (optional enhancement) */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.breadcrumb span {
    color: var(--border-light);
}

/* =====================================
   ABOUT INTRODUCTION - ENHANCED
   ===================================== */
.about-intro {
    padding: 120px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 3px;
    margin-bottom: 32px;
    font-weight: 500;
    position: relative;
    padding-bottom: 20px;
}

.about-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--text-dark);
}

.about-intro-text p {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-intro-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-intro-image {
    height: 480px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.about-intro-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.1) 0%,
        transparent 100%
    );
    transition: var(--transition-base);
}

.about-intro-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-intro-image:hover::before {
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, 0.05) 0%,
        transparent 100%
    );
}

/* Stats section (enhancement) */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =====================================
   EXPERTISE SECTION - ENHANCED
   ===================================== */
.about-expertise {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expertise-card {
    border: 1px solid var(--border-light);
    padding: 50px 40px;
    background: #fff;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--text-dark);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover::before {
    transform: translateX(0);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.expertise-card h3 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: var(--transition-base);
}

.expertise-card:hover h3 {
    color: var(--text-dark);
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Icon enhancement (optional) */
.expertise-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.expertise-card:hover .expertise-icon {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: #fff;
}

/* =====================================
   VALUES SECTION - ENHANCED
   ===================================== */
.about-values {
    padding: 120px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
    margin-top: 60px;
}

.value-item {
    padding: 40px 30px;
    transition: var(--transition-base);
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--text-dark);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover::before {
    width: 80px;
}

.value-item h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin: 30px 0 20px;
    font-weight: 500;
}

.value-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 320px;
    margin: 0 auto;
}

/* Number badge (enhancement) */
.value-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.value-item:hover .value-number {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: scale(1.1);
}

/* =====================================
   GLOBAL PRESENCE - ENHANCED
   ===================================== */
.about-global {
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #eee;
    position: relative;
    overflow: hidden;
}

.about-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.about-global > .container {
    position: relative;
    z-index: 1;
}

.about-global h2 {
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: 4px;
    margin-bottom: 32px;
    font-weight: 500;
    color: #fff;
}

.about-global p {
    max-width: 780px;
    margin: 0 auto 40px;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.9;
    color: #bbb;
}

/* CTA Button in global section */
.about-global .btn {
    border-color: #fff;
    color: #fff;
    margin-top: 20px;
}

.about-global .btn::before {
    background: #fff;
}

.about-global .btn:hover {
    color: #111;
}

/* World map decoration (optional) */
.world-map-decoration {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 600px;
    height: 400px;
    opacity: 0.05;
    pointer-events: none;
}

/* =====================================
   TIMELINE SECTION (Enhancement)
   ===================================== */
.about-timeline {
    padding: 120px 0;
    background: #fff;
}

.timeline-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 1;
    text-align: left;
}

.timeline-year {
    text-align: right;
    padding-right: 40px;
}

.timeline-year h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content {
    padding-left: 40px;
}

.timeline-content h4 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--text-dark);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--border-light);
}

/* =====================================
   TEAM SECTION (Enhancement)
   ===================================== */
.about-team {
    padding: 120px 0;
    background: var(--bg-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #fff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-slow);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.team-photo {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    transition: var(--transition-base);
}

.team-member:hover .team-photo::before {
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =====================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ===================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-intro-grid {
        gap: 60px;
    }

    .about-intro-image {
        height: 400px;
    }

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

    .values-grid {
        gap: 40px;
    }

    .about-stats {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Inner Hero */
    .inner-hero {
        padding: 120px 0 80px;
    }

    .inner-hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    /* About Intro */
    .about-intro {
        padding: 80px 0;
    }

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

    .about-intro-image {
        height: 320px;
        order: -1;
    }

    .about-intro-text h2::after {
        left: 0;
    }

    /* Stats */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    /* Expertise */
    .about-expertise {
        padding: 80px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .expertise-card {
        padding: 40px 30px;
    }

    /* Values */
    .about-values {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .value-item {
        padding: 30px 20px;
    }

    /* Global */
    .about-global {
        padding: 80px 0;
    }

    /* Timeline */
    .about-timeline {
        padding: 80px 0;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 50px;
        padding-left: 50px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 0;
        text-align: left;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .timeline-year h3 {
        font-size: 24px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    /* Team */
    .about-team {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .team-photo {
        height: 280px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .inner-hero {
        padding: 100px 0 60px;
    }

    .inner-hero h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .about-intro {
        padding: 60px 0;
    }

    .about-intro-text h2 {
        font-size: 24px;
    }

    .about-intro-image {
        height: 280px;
    }

    .expertise-card {
        padding: 30px 20px;
    }

    .about-expertise,
    .about-values,
    .about-global,
    .about-timeline,
    .about-team {
        padding: 60px 0;
    }
}

/* =====================================
   PRINT STYLES (Enhancement)
   ===================================== */
@media print {
    .inner-hero,
    .about-global {
        background: #fff !important;
        color: #111 !important;
    }

    .expertise-card,
    .team-member {
        page-break-inside: avoid;
    }
}

/* =====================================
   GALLERY PAGE STYLES
   ===================================== */

/* Page Header */
.inner-hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.inner-hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

.inner-hero p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.breadcrumb span {
    color: var(--border-light);
}

/* Gallery Introduction */
.gallery-intro-section {
    padding: 80px 0;
    background: #fff;
}

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

.gallery-intro-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 500;
}

.gallery-intro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0 80px;
    background: #fff;
}

.frontend-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.frontend-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.frontend-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-soft);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.frontend-gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.frontend-gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-content {
    text-align: center;
    color: white;
}

.gallery-hover-content svg {
    margin-bottom: 12px;
}

.gallery-hover-content p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-caption {
    padding: 20px;
    background: #fff;
}

.gallery-caption h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.gallery-caption p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Empty State */
.gallery-empty-state {
    text-align: center;
    padding: 100px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.gallery-empty-state h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.gallery-empty-state p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Content Sections */
.gallery-content-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-content-section.alt-bg {
    background: var(--bg-soft);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 500;
}

.content-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: var(--bg-soft);
    border-radius: 8px;
    border-left: 4px solid var(--text-dark);
    transition: all 0.3s ease;
}

.gallery-content-section.alt-bg .feature-item {
    background: #fff;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.value-item {
    padding: 24px;
    border-radius: 8px;
    background: var(--bg-soft);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Centered Content */
.content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 500;
}

.content-centered p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.gallery-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    margin-top: 24px;
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.lightbox-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .inner-hero {
        padding: 100px 0 60px;
    }

    .gallery-intro-section,
    .gallery-content-section,
    .gallery-cta-section {
        padding: 60px 0;
    }

    .gallery-section {
        padding: 40px 0 60px;
    }

    .frontend-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .frontend-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        display: none;
    }
}
/* ===============================
   CONTACT PAGE STYLES
   =============================== */

/* Contact Intro Section */
.contact-intro-section {
    padding: 100px 0;
    background: #fff;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--text-dark);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
}

.highlight-item strong {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-item span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 12px;
}

.form-subtext {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Alert Messages */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid;
}

.alert.success {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.alert.error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-message {
    font-size: 14px;
    line-height: 1.5;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

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

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Submit Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--text-dark);
    color: #fff;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Contact Details Wrapper */
.contact-details-wrapper {
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-details-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-content {
    flex: 1;
}

.detail-content .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.detail-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.contact-note {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

/* SEO Content Section */
.contact-seo-section {
    padding: 100px 0;
    background: #fff;
}

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

.seo-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

@media (max-width: 1024px) {
    .contact-intro-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-details-wrapper {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .contact-intro-section,
    .contact-form-section,
    .contact-seo-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

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

    .form-group.full {
        grid-column: span 1;
    }

    .contact-details-wrapper {
        padding: 40px 30px;
    }

    .contact-map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper,
    .contact-details-wrapper {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-detail {
        flex-direction: column;
        gap: 12px;
    }

    .detail-icon {
        align-self: flex-start;
    }
}
/* Spinner animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner circle {
    stroke-dasharray: 31.4;
    stroke-dashoffset: 15.7;
}
