.modern-hero,
.portfolio-highlight,
.contact-cta {
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .portfolio-tags {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }
}

/* CSS Variables for Theme Switching */
:root {
    --bg-primary: #f6f3ee;
    --bg-secondary: #ffffff;
    --bg-tertiary: #efe8dd;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --accent-primary: #0f1f2d;
    --accent-secondary: #1f2c3f;
    --accent-hover: #132a3d;
    --accent-highlight: #f4e7d4;
    --accent-cream: #ead7bd;
    --gradient-start: #050c18;
    --gradient-end: #15263a;
    --border-color: rgba(8, 15, 30, 0.08);
    --shadow: rgba(15, 23, 42, 0.08);
    --shadow-hover: rgba(15, 23, 42, 0.16);
    --navbar-bg: rgba(7, 17, 31, 0.65);
    --navbar-shadow: rgba(4, 7, 12, 0.35);
    --card-bg: #ffffff;
    --footer-bg: #0f1f2d;
    --footer-text: #cbd5f5;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: var(--accent-primary);
}

p {
    color: var(--text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bootstrap Navbar Customization */
.navbar {
    background: transparent;
    padding: 1.2rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 15, 26, 0.9) !important;
    box-shadow: 0 10px 30px var(--navbar-shadow);
    backdrop-filter: blur(12px);
}

.navbar-brand img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.navbar-nav .nav-link {
    color: #f8f7f4 !important;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    margin: 0 0.4rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-highlight) !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

/* Utility */
.section-spacing {
    padding: 110px 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--accent-secondary);
    text-decoration: none;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.btn-cream {
    background: var(--accent-highlight);
    color: var(--accent-primary);
    border: none;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cream:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(242, 228, 202, 0.4);
    color: var(--accent-primary);
}

.btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Modern hero */
.modern-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background: #0d1826;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transform: scale(1.05);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(3, 8, 18, 0.9), rgba(7, 17, 31, 0.65));
}

.modern-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Who we are */
.who-we-are {
    background: var(--bg-secondary);
}

.who-we-are h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.who-we-are p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Portfolio section */
.portfolio-highlight {
    background: #0f1f2d;
    color: #fff;
    padding: 120px 0;
    border-radius: 36px 36px 0 0;
    margin-top: 40px;
}

.portfolio-highlight h2,
.portfolio-highlight p {
    color: #fff;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.portfolio-highlight .tag {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.portfolio-highlight .tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

.text-cream {
    color: var(--accent-highlight) !important;
}

/* Testimonials */
.testimonials {
    background: var(--bg-primary);
}

.testimonials h2 {
    max-width: 650px;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

.author {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
}

.author .name {
    font-weight: 600;
    color: var(--accent-secondary);
}

.author .role {
    color: var(--text-muted);
}

/* Legacy hero slider styles retained for fallback */

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    color: #fff;
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

.btn-outline-dark {
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.bg-primary-subtle {
    background: rgba(244, 231, 212, 0.15) !important;
    color: var(--accent-highlight) !important;
    border: 1px solid rgba(244, 231, 212, 0.35);
}

.text-primary {
    color: var(--accent-highlight) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.shadow-soft {
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About Page */
.about-overview {
    background: var(--bg-secondary);
    padding: 110px 0;
}

.about-text p {
    color: var(--text-secondary);
}

.about-promise {
    background: rgba(244, 231, 212, 0.4);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
}

.about-promise i {
    font-size: 1.1rem;
    color: var(--accent-highlight);
}

.about-approach {
    background: var(--bg-primary);
    padding: 110px 0;
}

.approach-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.approach-card i {
    font-size: 1.8rem;
    color: var(--accent-highlight);
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: #101b2a;
    color: #fff;
    text-align: center;
    border-radius: 28px;
    margin: 0 auto 80px;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(9, 13, 22, 0.4);
}

.contact-cta h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: #fff;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn-primary {
    background: var(--accent-highlight);
    color: var(--accent-primary);
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-section p {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 10px;
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--footer-text);
}

/* Page Header Styles */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 140px 0 110px;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0.7;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--accent-secondary);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent-highlight);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.team-section {
    padding: 110px 0;
    background: #fefbf6;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--accent-highlight);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.position {
    color: var(--accent-secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: var(--accent-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-highlight);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Page Styles */
.services-overview {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.services-copy h2 {
    color: var(--accent-primary);
}

.services-copy p {
    color: var(--text-secondary);
}

.services-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.services-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 12, 24, 0.1), rgba(5, 12, 24, 0.6));
}

.services-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.service-pillars {
    background: var(--bg-primary);
    padding: 120px 0;
}

.service-pillar-card {
    background: #fff;
    border-radius: 26px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.service-pillar-card i {
    font-size: 1.2rem;
    color: var(--accent-highlight);
}

.service-pillar-card ul li span {
    color: var(--text-secondary);
}

.service-cta {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    padding: 110px 0;
    border-radius: 32px;
    margin: 0 auto 120px;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(3, 8, 18, 0.55);
}

.service-cta h2,
.service-cta p {
    color: #fff;
}

.service-cta .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.service-cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Portfolio Page Styles */
.portfolio-overview {
    background: #fefbf6;
    padding: 120px 0;
}

.portfolio-summary {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.portfolio-summary .portfolio-category + .portfolio-category {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.portfolio-summary i {
    font-size: 1.1rem;
    color: var(--accent-highlight);
}

.portfolio-feature-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.portfolio-feature-card .badge {
    background-color: rgba(244, 231, 212, 0.3);
    color: var(--accent-primary);
}

.highlight-box {
    border: 1px dashed rgba(244, 231, 212, 0.8);
    background: rgba(244, 231, 212, 0.3);
    border-radius: 24px;
}

.portfolio-feature-card ul li span {
    line-height: 1.6;
}

.portfolio-cta {
    background: var(--accent-primary);
    color: #fff;
    border-radius: 32px;
    padding: 100px 0;
    margin: 0 auto 120px;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(3, 8, 18, 0.55);
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.8);
}

/* Investors Page */
.investors-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding-bottom: 110px;
}

.investment-opportunities {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.investment-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 2.75rem 2.25rem;
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.investment-card .badge {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
}

.investment-card i {
    font-size: 1.1rem;
}

.divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.1);
}

.why-partner {
    background: var(--bg-primary);
    padding: 110px 0;
}

.partner-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 36px;
    box-shadow: 0 35px 65px rgba(15, 23, 42, 0.12);
}

.investors-cta {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border-radius: 32px;
    padding: 110px 0;
    margin: 0 auto 120px;
    max-width: 1100px;
    box-shadow: 0 30px 60px rgba(3, 8, 18, 0.55);
}

.investors-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(31, 44, 63, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: var(--accent-primary);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-secondary);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
}

.container h1 {
    color: #fff;
}

/*.container p {*/
/*    color: #fff;*/
/*}*/

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-content {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--navbar-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .nav-content.active {
        left: 0;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
