:root {
    /* Color Palette - BIM Tech Premium */
    --bg-dark: #0B0D10;
    --bg-card: #111111;
    --gold: #C9A64A;
    --gold-bright: #D4AF37;
    --gold-glow: rgba(201, 166, 74, 0.2);
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --text-muted: #666666;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-gold: 0 0 20px rgba(201, 166, 74, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn,
.nav-link {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* --- REUSABLE COMPONENTS --- */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    /* Precision/Tech look usually uses sharper corners */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-gold:hover {
    background-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 166, 74, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.section-tag {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
    opacity: 0.8;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.section-title {
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to bottom, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* --- HEADER --- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(11, 13, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--gold);
}

/* --- HERO --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 13, 16, 0.6), rgba(11, 13, 16, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(201, 166, 74, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(201, 166, 74, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* --- PHILOSOPHY --- */

.philosophy {
    padding: 160px 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.phil-card {
    background-color: var(--bg-card);
    padding: 60px 45px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
}

.phil-card.premium {
    border: 1px solid var(--gold);
    background: linear-gradient(145deg, #111111 0%, #0b0d10 100%);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: scale(1.05);
    z-index: 5;
    animation: goldPulse 4s infinite alternate;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 20px var(--gold-glow);
    }

    100% {
        box-shadow: 0 0 50px rgba(201, 166, 74, 0.3);
    }
}

.phil-card h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 900;
}

.phil-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.values-list li i {
    display: inline-block;
    flex-shrink: 0;
    color: var(--gold);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* --- SERVICES (UX RE-ENGINEERING - TABBED) --- */

.services {
    padding: 140px 0;
    background-color: var(--bg-dark);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0px;
    overflow-x: auto;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0px; 
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-white);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 50px;
    line-height: 1.6;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.services-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 4px;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
    transform: translateY(-5px);
}

.service-card .service-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-white);
    line-height: 1.3;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-service-link {
    font-size: 0.75rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    transition: 0.2s ease;
    margin-top: auto;
}

.btn-service-link:hover {
    gap: 18px;
    color: var(--text-white);
}

/* --- SERVICE DETAIL PAGE STYLES --- */

.detail-hero {
    padding: 220px 0 120px;
    background: linear-gradient(rgba(11, 13, 16, 0.85), rgba(11, 13, 16, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920');
}

.detail-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.detail-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    text-transform: none;
    letter-spacing: 0;
}

.detail-section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* 3-column variant for result/value cards in detail pages */
.detail-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bullet-list {
    list-style: none;
    margin-top: 40px;
}

.bullet-list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 1px;
    background: var(--gold);
}

.bullet-list li strong {
    color: var(--text-white);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.value-prop-card {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    padding: 60px;
    text-align: center;
    position: relative;
}

.value-prop-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* --- COMPARISON SLIDER --- */
.mini-slider-container {
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: ew-resize;
    user-select: none;
}

.slider-image-before, .slider-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image-before img, .slider-image-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-image-after {
    width: 50%;
    z-index: 2;
    border-right: 2px solid var(--gold);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 15px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    z-index: 5;
}

.slider-image-before .slider-label { right: 20px; }
.slider-image-after .slider-label { left: 20px; }

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gold);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(201, 166, 74, 0.5);
}

/* --- KNOWLEDGE CENTER (BLOG) --- */
.knowledge-center {
    padding: 140px 0;
    background-color: #050505;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* --- ROI CALCULATOR --- */
.roi-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}

.roi-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.roi-content {
    padding: 60px;
}

.roi-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.roi-result {
    background: linear-gradient(145deg, #161616 0%, #0b0d10 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(201, 166, 74, 0.2);
}

.roi-value-group {
    margin-bottom: 40px;
}

.roi-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.roi-amount {
    display: block;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 900;
    font-family: var(--font-heading);
}

.roi-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.roi-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.roi-benefits i {
    color: var(--gold);
}

@media (max-width: 768px) {
    .roi-card { grid-template-columns: 1fr; }
    .roi-inputs { grid-template-columns: 1fr; }
    .roi-result { border-left: none; border-top: 1px solid rgba(201, 166, 74, 0.2); }
    .comparison-slider { height: 250px; }
}

/* --- PROJECTS (The Most Unique Part) --- */

.projects {
    padding: 140px 0;
}

.project-item {
    display: flex;
    background-color: #fff;
    /* Lateral band is clear as per request */
    margin-bottom: 80px;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.project-sidebar {
    width: 320px;
    background-color: #F5F5F7;
    padding: 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.project-sidebar h3 {
    color: var(--bg-dark);
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

.tech-data {
    list-style: none;
}

.tech-item {
    margin-bottom: 12px;
    font-size: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.tech-label {
    font-weight: 800;
    color: #666;
}

.tech-value {
    font-weight: 600;
    color: var(--bg-dark);
}

.project-main {
    flex: 1;
    position: relative;
    background-color: #000;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.gold-arc {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 150px;
    border: 2px solid var(--gold);
    border-left: none;
    border-radius: 0 150px 150px 0;
    transform: translateY(-50%);
    z-index: 3;
}

.project-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(11, 13, 16, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border: 1px solid var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- CTA SECTION --- */

.cta-section {
    padding: 100px 0;
    background-color: var(--bg-card);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

/* --- FOOTER --- */

footer {
    padding: 80px 0 40px;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
        display: flex !important;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .philosophy-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .detail-grid,
    .detail-grid.three-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .detail-hero h1 {
        font-size: 3rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {

    .header .btn {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .philosophy-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .project-item {
        flex-direction: column;
        height: auto;
    }

    .project-sidebar {
        width: 100%;
    }

    .project-main {
        height: 300px;
    }

    .gold-arc {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT FORM SECTION --- */

.contact-section {
    padding: 140px 0;
    background-color: var(--bg-card);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-icon {
    color: var(--gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--bg-dark);
    border: 1px solid rgba(201, 166, 74, 0.2);
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.8;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 14px 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A64A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 166, 74, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -8px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}