/* ========================================
   Modern Luxury Real Estate Website Styles
   Benjamin Realty
   ======================================== */

/* CSS Variables - Modern Luxury Color Scheme */
:root {
    --primary-color: #0a0a0a;
    --secondary-color: #ffffff;
    --accent-color: #1a1a1a;
    --text-dark: #0a0a0a;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-cream: #fafafa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 10, 10, 0.12);
    --shadow-lg: 0 10px 30px rgba(10, 10, 10, 0.15);
    --shadow-xl: 0 20px 50px rgba(10, 10, 10, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
}

.logo-text-accent {
    color: var(--primary-color);
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-menu a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: var(--transition);
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
}

/* Hero Section - Modern Design */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3.25rem, 5vw, 4.25rem) 0 clamp(2.5rem, 4vw, 3.5rem);
    margin-top: 70px;
    background: #050505;
    min-height: clamp(520px, 70vh, 640px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: grayscale(30%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(118deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.68) 55%, rgba(5, 5, 5, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
    width: 100%;
    max-width: 980px;
    margin: 0;
    margin-left: clamp(1.5rem, 5vw, 3rem);
    padding: 0 clamp(1rem, 3.5vw, 2rem);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.05;
    letter-spacing: -0.022em;
    font-family: var(--font-primary);
}

.title-line {
    display: block;
    color: var(--text-white);
    font-weight: 300;
}

.title-line-accent {
    display: block;
    color: var(--text-white);
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.6rem;
    opacity: 0.9;
    letter-spacing: -0.01em;
    max-width: 520px;
    line-height: 1.55;
}

.hero-description {
    font-size: 0.72rem;
    margin-bottom: 1rem;
    opacity: 0.75;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    max-width: 480px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr);
    gap: clamp(4rem, 8vw, 6.5rem);
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 520px;
}

.hero-highlights {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.01em;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
}

.hero-meta {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
    min-width: 105px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta-value {
    font-size: 1.28rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.hero-meta-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.hero-form {
    background: linear-gradient(152deg, rgba(18, 18, 18, 0.92) 0%, rgba(24, 24, 24, 0.82) 100%);
    padding: clamp(1.35rem, 2.5vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
    color: var(--text-white);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 520px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-form h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    color: var(--text-white);
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form .form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
}

.hero-form .form-group input,
.hero-form .form-group textarea,
.hero-form .form-group select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-white);
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    transition: var(--transition);
    width: 100%;
    font-size: 0.82rem;
}

.hero-form .form-group input:focus,
.hero-form .form-group textarea:focus,
.hero-form .form-group select:focus {
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hero-form textarea {
    min-height: 90px;
    resize: vertical;
}

.hero-form .btn-primary {
    width: 100%;
    margin-top: 0.35rem;
    background: var(--text-white);
    color: var(--primary-color);
    border-color: transparent;
    padding: 0.6rem 0.85rem;
    font-size: 0.84rem;
}

.hero-form .btn-primary:hover {
    background: rgba(255, 255, 255, 0.85);
}

.hero-form .btn-primary:focus {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--text-white);
    font-size: 0.85rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

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

@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0 4.5rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0 1.75rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-copy {
        max-width: 640px;
    }

    .hero-form {
        margin: 0;
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3.5rem;
    }

    .hero-content {
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-copy {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights li {
        padding-left: 1rem;
    }

    .hero-meta {
        justify-content: center;
        gap: 1rem;
    }

    .hero-meta-item {
        min-width: 110px;
        padding: 0.65rem 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-form {
        margin: 0 auto;
        max-width: 360px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--text-white);
    color: var(--text-dark);
    border-color: var(--text-white);
    font-weight: 500;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Introduction Section */
.intro-section {
    background: var(--bg-white);
}

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

/* Services Section */
.services-section {
    background: var(--bg-cream);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
    gap: 1rem;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Quick Links Section */
.quick-links-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-white);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.quick-link-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-link-arrow {
    font-size: 1.25rem;
    color: var(--text-white);
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.quick-link-arrow i {
    font-size: 1rem;
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(5px);
    opacity: 1;
}

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

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-preview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.05) 0%, rgba(26, 26, 26, 0.05) 100%);
}

.about-preview-content {
    padding: 2rem 0;
}

@media (max-width: 968px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-title::after {
    background: var(--text-white);
    left: 50%;
    transform: translateX(-50%);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--text-white);
    opacity: 0.9;
    margin-right: 0.75rem;
}

.contact-item:hover {
    color: var(--text-white);
    opacity: 1;
}

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

    .cta-contact-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-white);
    opacity: 0.8;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-white);
    padding: 6rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: var(--text-white);
}

/* Form Styles */
.form-section {
    background: var(--bg-cream);
    padding: 4rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 1.5rem;
}

.content-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Links Page Styles */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.link-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.link-card a {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-card a:hover {
    gap: 1rem;
}

/* Contact Page Specific */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    padding: 0;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-info-item a {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.address-text {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Form Error Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .scroll-indicator {
        display: none;
    }
}

