@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@200;400;500;700;800&display=swap');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-muted: #6e6e73;
    --text-subtle: #86868b;
    --accent: #000000;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --card-bg: rgba(245, 245, 247, 0.6);
    --card-hover-bg: rgba(240, 240, 243, 0.85);
    --glow-primary: rgba(0, 0, 0, 0.01);
    --glow-hover: rgba(0, 0, 0, 0.03);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-title: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Glow Backgrounds --- */
.ambient-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120vw;
    height: 120vw;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
    filter: blur(120px);
    animation: floatGlow 25s ease-in-out infinite alternate;
}

.glow-2 {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 100vw;
    height: 100vw;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    filter: blur(140px);
    animation: floatGlow 30s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(5%, 8%) scale(1.1);
    }
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --- Header / Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-quick);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-quick);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo span {
    font-weight: 200;
    color: var(--text-muted);
    margin-left: 0.25em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-quick);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: var(--transition-quick);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact-nav {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-color);
    padding: 10px 22px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-quick);
}

.btn-contact-nav:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 101;
}

.burger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-quick);
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--text-muted);
}

.hero h1 {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h1 span {
    font-weight: 200;
    display: block;
    color: var(--text-muted);
    font-size: 3rem;
}

.hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    padding: 16px 36px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-quick);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-color);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 16px 36px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-quick);
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background: rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

/* Giant light glow behind hero image */
.hero-image-container::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .hero h1 span {
        font-size: 2.4rem;
    }
    .hero-image-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 80px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-tag {
        padding-left: 0;
    }
    .hero-tag::before {
        display: none;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-image-container {
        height: 380px;
    }
}

/* --- Common Section Styles --- */
section {
    padding: 140px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 90px 0;
    }
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-tag {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.15;
}

.section-title span {
    font-weight: 200;
    color: var(--text-muted);
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 20px;
}

/* --- Services (Grid layouts) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

/* Glow gradient overlay on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 0, 0, 0.02), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05), 0 0 30px rgba(0, 0, 0, 0.01);
}

.service-icon {
    margin-bottom: 35px;
    color: var(--text-color);
    display: inline-flex;
    position: relative;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.25;
}

/* Subtle glow behind icons */
.service-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(5px);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-partner {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.service-partner span {
    color: var(--text-muted);
    font-weight: 300;
}

.service-soon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-color);
    padding: 4px 12px;
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
}

.service-card.soon {
    border-color: rgba(0, 0, 0, 0.03);
    opacity: 0.65;
}

.service-card.soon:hover {
    transform: none;
    border-color: rgba(0, 0, 0, 0.05);
    background: var(--card-bg);
    box-shadow: none;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-quick);
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    letter-spacing: 0.15em;
}

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

/* --- Sub Services Section --- */
.subservices-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 900px) {
    .subservices-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.subservices-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.subservice-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.subservice-item.active {
    border-color: var(--text-color);
}

.subservice-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subservice-trigger h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.subservice-item.active .subservice-trigger h3 {
    color: var(--text-color);
    font-weight: 500;
}

.subservice-trigger span {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--text-subtle);
    transition: var(--transition-quick);
}

.subservice-item.active .subservice-trigger span {
    color: var(--text-color);
    transform: rotate(45deg);
}

.subservice-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.subservice-item.active .subservice-content {
    max-height: 200px;
    margin-top: 15px;
}

.subservice-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.subservices-images {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.subservice-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
    filter: grayscale(30%);
}

.subservice-img.active {
    opacity: 1;
    transform: scale(1);
}

.subservices-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .subservices-images {
        height: 320px;
    }
    .subservice-trigger h3 {
        font-size: 1.25rem;
    }
}

/* --- Showcase / Partner section --- */
.showcase-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .showcase-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.showcase-image-container {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: var(--transition-smooth);
}

.showcase-image-container:hover .showcase-image {
    transform: scale(1.02);
}

.partner-logo-container {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-color);
}

.partner-logo span {
    font-weight: 200;
    color: var(--text-muted);
}

.partner-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 250px;
}

@media (max-width: 768px) {
    .showcase-image-container {
        height: 350px;
    }
    .partner-logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- Contact Section --- */
.contact-section {
    border-top: 1px solid var(--border-color);
    background: radial-gradient(circle at bottom center, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item-icon {
    color: var(--text-color);
    margin-top: 3px;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.contact-item h4 {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-quick);
}

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

/* Form Styles */
.contact-form-container {
    background: rgba(245, 245, 247, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: var(--transition-quick);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    pointer-events: none;
    transition: var(--transition-quick);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--text-color);
}

/* Custom select styling */
.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-group .select-arrow {
    position: absolute;
    right: 0;
    top: 16px;
    pointer-events: none;
    width: 10px;
    height: 10px;
    border-left: 1px solid var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
    transform: rotate(-45deg);
    transition: var(--transition-quick);
}

.form-group select:focus ~ .select-arrow {
    transform: rotate(135deg);
    border-color: var(--text-color);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    padding: 16px;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-quick);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-submit:hover {
    background: transparent;
    color: var(--text-color);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    color: #34c759;
    display: block;
}

.form-message.error {
    color: #ff3b30;
    display: block;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 320px;
    margin-top: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav h4 {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition-quick);
}

.footer-nav a:hover {
    color: var(--text-color);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-subtle);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-quick);
}

.footer-socials a:hover {
    color: var(--text-color);
}

/* --- Scroll Reveal Effects --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Custom cursor (premium desktop touch) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    display: none;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot {
        display: block;
    }
}
