/* ===== CSS Variables ===== */
:root {
    --primary: #13607E;
    --primary-dark: #1F4F70;
    --secondary: #faf7f8;
    --background: #FFFFFF;
    --foreground: #292929;
    --text-muted: #5a5a5a;
    --border: #e0e0e0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    font-weight: 400;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Geologica', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list > li > a {
    font-weight: 500;
    color: var(--foreground);
    padding: 0.5rem 0;
    transition: var(--transition);
    text-align: center;
}

.nav-list > li > a:hover {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Dropdown Menu */
.nav-list > li {
    position: relative;
}


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

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

.dropdown li {
    display: block;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    font-weight: 400;
    color: var(--foreground);
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--secondary);
    color: var(--primary);
    text-shadow: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/report_on_table.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Mission Section ===== */
.mission {
    padding: 5rem 0;
    background-color: var(--secondary);
    text-align: center;
}

.mission h2 {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
}

/* ===== Services Section ===== */
.services {
    padding: 5rem 0;
    text-align: center;
}

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

.service-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a.service-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

a.service-card:hover {
    color: inherit;
}

.learn-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

a.service-card:hover .learn-more {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--secondary);
    text-align: center;
}

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

.feature {
    padding: 2rem;
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.quote-section h2 {
    color: white;
}

.quote-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    opacity: 0.95;
}

.quote-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Service Area Section ===== */
.service-area {
    padding: 5rem 0;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.area-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
}

.area-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    text-align: center;
    font-size: 2rem;
}

/* ===== About Section ===== */
.about {
    padding: 5rem 0;
    background-color: var(--secondary);
}

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

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.about-content h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.credential {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    text-align: center;
}

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

.testimonial-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: left;
}

.stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===== Contact Section ===== */
.contact {
    padding: 5rem 0;
    background-color: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: var(--foreground);
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

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

.cta-card {
    background: var(--secondary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-card h3 {
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(rgba(28, 83, 116, 0.9), rgba(28, 83, 116, 0.9)), url('assets/images/report_on_table.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 50px;
    /*filter: brightness(0) invert(1);*/
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        box-shadow: var(--shadow);
        display: none;
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

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

    .nav-list a::after {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        padding-left: 1rem;
        background: var(--secondary);
        border-radius: 0;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }

    .dropdown li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .quote-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .service-card,
    .testimonial-card,
    .area-card {
        padding: 1.5rem;
    }

    .credentials {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Service Page Styles ===== */
.page-hero {
    background: #1C5374;
    background: linear-gradient(7deg, rgba(28, 83, 116, 1) 0%, rgba(105, 194, 245, 1) 20%, rgba(28, 83, 116, 1) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/reading_report.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.presale-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/forsale_house.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new-construction-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/stud_home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.maintenance-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/technician_examining.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.prepurchase-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/sold_house.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wholesale-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/wholesale_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consulting-hero {
    background: linear-gradient(rgba(28, 83, 116, 0.85), rgba(28, 83, 116, 0.85)), url('assets/images/shaking_hands.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    color: white;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.service-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.main-content h2 {
    margin-bottom: 1rem;
}

.main-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.main-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    counter-reset: process;
}

.process-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    counter-increment: process;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.benefit h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
}

.benefit p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.options-section {
    margin: 2rem 0;
}

.option {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.option h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
}

.option p {
    margin-bottom: 0;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar .cta-card {
    margin-bottom: 1.5rem;
}

.sidebar .cta-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.sidebar .cta-card .btn:last-child {
    margin-bottom: 0;
}

.or-divider {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0.75rem 0 !important;
}

.info-card {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Service Page Responsive */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
    }

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

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0;
    }

    .service-content {
        padding: 2rem 0;
    }
}

/* ===== Blog Styles ===== */
.blog-intro {
    margin: 0 auto;
    text-align: center;
}

.blog-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-intro .coming-soon {
    margin-top: 2rem;
    font-style: italic;
    color: var(--primary);
}

/* ===== Contact Page Styles ===== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.contact-form-section h2 {
    margin-bottom: 0.5rem;
}

.contact-form-section > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(28, 83, 116, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

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

.contact-form .btn {
    margin-top: 0.5rem;
}

.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-sidebar .cta-card {
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-sidebar .cta-card .btn {
    width: 100%;
    justify-content: center;
}

.calendar-embed {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.calendar-embed h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.calendly-inline-widget {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-sidebar {
        position: static;
    }
}

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