/* Self-hosted fonts */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/source-sans-3-v19-latin-600.woff2') format('woff2');
}

:root {
    --maroon: #8B2332;
    --maroon-dark: #6A1B27;
    --gray-dark: #2A2A2A;
    --gray-medium: #6B6B6B;
    --gray-light: #F5F5F5;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --gold: #C9A962;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--gray-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
}

nav.light {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
}

nav.light .nav-links > li > a {
    color: var(--gray-dark);
}

nav.light .mobile-toggle span {
    background: var(--gray-dark);
}

.logo {
    height: 40px;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 35px;
}

/* Megamenu Styles */
.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav.scrolled .nav-links > li > a {
    color: var(--gray-dark);
}

.nav-links > li > a svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.nav-links > li:hover > a svg {
    transform: rotate(180deg);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--maroon);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links > li:hover > a::after {
    transform: scaleX(1);
}

/* Megamenu Dropdown */
.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 600px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 3px solid var(--maroon);
}

.megamenu.wide {
    min-width: 800px;
    grid-template-columns: repeat(3, 1fr);
}

.nav-links > li:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--gray-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.megamenu-item:hover {
    background: var(--gray-light);
}

.megamenu-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.megamenu-content h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--gray-dark);
}

.megamenu-content p {
    font-size: 0.8rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

.megamenu-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.megamenu-featured:hover {
    transform: scale(1.02);
}

.megamenu.wide .megamenu-featured {
    grid-column: span 3;
}

.megamenu-featured img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.megamenu-featured-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.megamenu-featured-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

nav.scrolled .mobile-toggle span {
    background: var(--gray-dark);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-dark);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.mobile-menu-links > li > a svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.mobile-menu-links > li.expanded > a svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0,0,0,0.2);
    margin: 0 -2rem;
    padding: 0 2rem;
}

.mobile-menu-links > li.expanded .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu img {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
}

/* CTA Button */
.nav-cta {
    background: var(--maroon);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--maroon-dark);
}

.nav-cta::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-dark) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 35, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    width: min(500px, 80vw);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s, bounce 2s ease infinite 2s;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255,255,255,0.5);
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--maroon);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--gray-medium);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(139, 35, 50, 0.1);
    transition: all 0.4s ease;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    fill: var(--maroon);
}

.service-item h4 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Portfolio Sections */
.portfolio-section {
    background: var(--cream);
}

.portfolio-section.dark {
    background: var(--gray-dark);
}

.portfolio-section.dark .section-title {
    color: var(--white);
}

.portfolio-section.dark .section-label {
    color: var(--gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--gray-dark);
}

.portfolio-item.tall {
    aspect-ratio: 3/4;
}

.portfolio-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 35, 50, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.portfolio-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-info h4,
.portfolio-item:hover .portfolio-info p {
    transform: translateY(0);
}

/* Photography Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.photo-item:nth-child(1) { grid-row: span 2; }
.photo-item:nth-child(2) { grid-column: span 2; }

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Web Development Section */
.web-section {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    position: relative;
    overflow: hidden;
}

.web-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.web-section .section-title {
    color: var(--white);
}

.web-section .section-label {
    color: var(--gold);
}

.web-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.web-feature {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.web-feature:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.web-feature h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.web-feature p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.web-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    stroke: var(--gold);
    fill: none;
}

/* Video Section */
.video-section {
    background: var(--gray-dark);
    position: relative;
}

.video-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.video-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.video-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-tag {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-visual {
    position: relative;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--white);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
    margin-left: 5px;
    transition: all 0.3s ease;
}

.play-button:hover svg {
    fill: var(--maroon);
}

/* Logo Section */
.logo-section {
    background: var(--white);
}

.logo-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-display {
    text-align: center;
}

.logo-display img {
    max-width: 300px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.logo-display:hover img {
    transform: scale(1.05);
}

.logo-display p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Contact Preview */
.contact-preview {
    background: var(--gray-dark);
    text-align: center;
}

.contact-preview .section-title {
    color: var(--white);
}

.contact-preview .section-label {
    color: var(--gold);
}

.contact-preview-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-preview-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--maroon);
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--gray-dark);
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 30px;
    opacity: 0.8;
}

.footer-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-address {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .megamenu {
        min-width: 500px;
    }

    .megamenu.wide {
        min-width: 500px;
        grid-template-columns: 1fr 1fr;
    }

    .megamenu.wide .megamenu-featured {
        grid-column: span 2;
    }

    .portfolio-item.wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-item:nth-child(1) { grid-row: span 1; }
    .photo-item:nth-child(2) { grid-column: span 1; }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }

    nav.scrolled {
        padding: 0.8rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    section {
        padding: 5rem 2rem;
    }

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

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

    .video-showcase {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-address {
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--maroon);
    border-color: var(--maroon);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Contact Page Styles */
.contact-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--gray-dark) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 35, 50, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(107, 107, 107, 0.1) 0%, transparent 50%);
}

.contact-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.contact-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    background: var(--cream);
    padding: 6rem 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 3px solid var(--maroon);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
}

.contact-info-item h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gray-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--maroon);
    background: var(--maroon);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-medium);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--white);
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.contact-form-section .form-subtitle {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: var(--maroon);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: var(--white);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--maroon);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--gray-medium);
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.form-submit {
    margin-top: 2rem;
}

.form-submit button {
    width: 100%;
    padding: 1.2rem;
    background: var(--maroon);
    color: var(--white);
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background: var(--maroon-dark);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.active {
    display: block;
}

.form-success svg {
    width: 80px;
    height: 80px;
    stroke: #28a745;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--gray-light);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-dark) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 4rem 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

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