/* Reset & Variables */
:root {
    --bg-dark: #0f0f10;
    --bg-card: #161619;
    --bg-card-light: #1e1e24;
    --accent: #d4af37; /* Gold/Bronze */
    --accent-hover: #f3cf55;
    --text-primary: #f8f9fa;
    --text-secondary: #a0a0a5;
    --border-color: #2a2a2f;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.line {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 16px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background-color: rgba(15, 15, 16, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background-image: linear-gradient(rgba(15, 15, 16, 0.85), rgba(15, 15, 16, 0.95)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-tag {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 24px auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-weight: 300;
}

/* CTA Cards */
.cta-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cta-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-card.card-dark {
    background-color: rgba(22, 22, 25, 0.6);
}

.cta-card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Pillars Section */
.pillars {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.pillar-item {
    background-color: var(--bg-card-light);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.pillar-item:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.pillar-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: rgba(22, 22, 25, 0.4);
    border-top: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.gallery-img-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background-color: #222;
    position: relative;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-info {
    padding: 24px;
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section & Split Forms */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 16px;
    flex: 1;
    min-width: 320px;
    transition: var(--transition);
}

.contact-box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-box.service-box {
    background-color: rgba(22, 22, 25, 0.5);
}

.contact-header {
    margin-bottom: 30px;
}

.badge {
    background-color: rgba(214, 175, 55, 0.15);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.badge-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(214, 175, 55, 0.1);
}

/* Footer */
.footer {
    background-color: #0b0b0c;
    border-top: 1px solid var(--border-color);
    padding: 50px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent) !important;
    margin-top: 10px;
}
