/* ============================================
   THEMBA ATTORNEYS - COMPLETE STYLESHEET
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    overflow-x: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease;
}

body.cookie-notice-visible {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    body.cookie-notice-visible {
        padding-bottom: 150px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 76px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-image {
    height: 68px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    align-self: flex-start;
}

/* Desktop Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    background-color: #f0f0f0;
    color: #0a2c5e;
}

.nav-link.active {
    color: #0a2c5e;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #d4a017;
    border-radius: 2px;
}

/* Services Dropdown (Desktop) */
.nav-item-has-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    display: none;
    z-index: 1200;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
    background-color: #f0f2f5;
    color: #0a2c5e;
}

.nav-item-has-dropdown:hover > .nav-dropdown {
    display: block;
}

/* Hamburger Menu Button (Desktop Hidden) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.nav-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(rgba(10, 44, 94, 0.85), rgba(10, 44, 94, 0.9)), url('../assets/image\ 2.jpeg') center/cover no-repeat;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
   
}

.page-hero {
    background: linear-gradient(rgba(10, 44, 94, 0.85), rgba(10, 44, 94, 0.9));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a017, #e4b037);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(10, 44, 94, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a3c6e, #2a4c7e);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 44, 94, 0.4);
}

.btn-mini {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0a2c5e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-mini:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #0a2c5e;
    position: relative;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0a2c5e, #d4a017);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Company Section */
.company-section {
    background-color: #fff;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.company-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background-color: #f0f2f5;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2c5e;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: #666;
}

.company-image .image-placeholder {
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 44, 94, 0.2);
}

.company-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #d4a017;
}

.company-image .image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Founders Section */
.founders-section {
    background-color: #f8f9fa;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.founder-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.founder-img {
    width: 150px;
    height: 200px;
    border-radius: 70%;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 25px;
}

.founder-card h3 {
    font-size: 1.8rem;
    text-align: center;
    color: #0a2c5e;
    margin-bottom: 10px;
}

.founder-title {
    text-align: center;
    color: #d4a017;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.founder-quote {
    font-style: italic;
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d4a017;
}

.founder-bio p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.founder-bio ul {
    list-style: none;
    margin-top: 15px;
}

.founder-bio li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.founder-bio li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a017;
    font-weight: bold;
}

.founders-mission {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #d4a017;
}

.founders-mission h3 {
    font-size: 1.8rem;
    color: #0a2c5e;
    margin-bottom: 25px;
    text-align: center;
}

.founders-mission > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.principle {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.principle:hover {
    transform: translateY(-5px);
    background-color: #f0f2f5;
}

.principle i {
    font-size: 2.5rem;
    color: #0a2c5e;
    margin-bottom: 20px;
}

.principle h4 {
    font-size: 1.3rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.principle p {
    color: #666;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    background-color: #fff;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-mini-card {
    background-color: #f8f9fa;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #0a2c5e;
}

.service-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-top-color: #d4a017;
}

.service-mini-card i {
    font-size: 2.5rem;
    color: #0a2c5e;
    margin-bottom: 20px;
}

.service-mini-card h3 {
    font-size: 1.3rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.service-mini-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.preview-cta {
    text-align: center;
    margin-top: 40px;
}

/* Services Main Page */
.services-main {
    background-color: #fff;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-main-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4a017;
}

.service-main-icon {
    font-size: 3rem;
    color: #0a2c5e;
    margin-bottom: 25px;
    text-align: center;
}

.service-main-card h3 {
    font-size: 1.6rem;
    color: #0a2c5e;
    margin-bottom: 20px;
    text-align: center;
}

.service-main-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.service-features span {
    background-color: #f0f2f5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #0a2c5e;
    font-weight: 500;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-main-card:hover .service-link {
    color: #0a2c5e;
}

.service-main-card:hover .service-link i {
    transform: translateX(5px);
}

/* Individual Service Detail Pages */
.service-detail {
    background-color: #fff;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.service-main h2 {
    font-size: 2rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.service-main > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-main h3 {
    font-size: 1.4rem;
    color: #0a2c5e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-features-detailed,
.expertise-grid,
.specialization-grid,
.additional-services,
.process-steps-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature,
.expertise,
.specialization,
.additional-service,
.process-step-detailed {
    background-color: #f8f9fa;
    padding: 20px 18px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 1.8rem;
    color: #0a2c5e;
    margin-bottom: 12px;
}

.feature h4,
.expertise h4,
.specialization h4,
.additional-service h4,
.process-step-detailed h4 {
    font-size: 1.15rem;
    color: #0a2c5e;
    margin-bottom: 8px;
}

.feature p,
.expertise p,
.specialization p,
.additional-service p,
.process-step-detailed p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.expertise ul,
.specialization ul {
    list-style: none;
    margin-top: 8px;
}

.expertise li,
.specialization li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
    color: #555;
    font-size: 0.95rem;
}

.expertise li::before,
.specialization li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #d4a017;
}

.step-number-detailed {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 20px 18px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: #0a2c5e;
    margin-bottom: 10px;
}

.sidebar-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.sidebar-card ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-card li {
    margin-bottom: 6px;
}

.sidebar-card a {
    color: #0a2c5e;
    text-decoration: none;
    font-size: 0.95rem;
}

.sidebar-card a.btn {
    color: #fff;
}

.sidebar-card .btn + .small-text {
    margin-top: 12px;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

/* Service Page Components (used on service detail pages) */
.small-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.highlight-box {
    margin: 30px 0;
    padding: 26px 22px;
    background: linear-gradient(135deg, rgba(10, 44, 94, 0.06), rgba(212, 160, 23, 0.06));
    border-radius: 12px;
    border-left: 5px solid #d4a017;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2c5e;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.highlight-box h4 i {
    color: #d4a017;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.highlight-box li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4a017;
    font-weight: 700;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0a2c5e;
    font-weight: 800;
}

.emergency-card {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08), rgba(255, 255, 255, 0.65));
    border-left: 4px solid #dc3545;
}

/* Service detail layout: stack on smaller screens */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        gap: 16px;
    }
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(10, 44, 94, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    color: #0a2c5e;
    margin-bottom: 15px;
    margin-top: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #0a2c5e;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-content h2 {
    font-size: 2rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.contact-form-content > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a2c5e;
    box-shadow: 0 0 0 3px rgba(10, 44, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2c5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 50px;
}

.contact-methods {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-methods label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.contact-methods input[type="radio"] {
    width: auto;
}

.contact-map {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-map h3 {
    font-size: 1.5rem;
    color: #0a2c5e;
    margin-bottom: 25px;
}

.map-placeholder {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #0a2c5e;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #0a2c5e;
    font-weight: 600;
    margin-bottom: 25px;
}

.map-directions {
    text-align: left;
    margin-top: 25px;
}

.map-directions p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: normal;
}

.map-directions strong {
    color: #0a2c5e;
}

/* Reviews Section */
.reviews-section {
    background-color: #fff;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0a2c5e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: #0a2c5e;
    margin-bottom: 5px;
}

.review-rating {
    color: #d4a017;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.9rem;
    color: #888;
}

.review-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-service {
    display: inline-block;
    background-color: #e8f0fe;
    color: #0a2c5e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Add Review Section */
.add-review-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #d4a017;
}

.add-review-section h3 {
    font-size: 1.8rem;
    color: #0a2c5e;
    margin-bottom: 30px;
    text-align: center;
}

.rating-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.rating-input .star {
    cursor: pointer;
    font-size: 1.8rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-input .star:hover,
.rating-input .star.active {
    color: #d4a017;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #0a2c5e;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    padding: 70px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #d4a017, #f4c046);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo p {
    opacity: 0.85;
    line-height: 1.7;
    margin-top: 15px;
    font-size: 1.05rem;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h4::after, .footer-contact h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: #d4a017;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #d4a017;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}

.footer-contact i {
    color: #d4a017;
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #d4a017;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.footer-social p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============================================
   REVIEWS & FAQ SIDE BY SIDE LAYOUT
   ============================================ */

.reviews-faq-section {
    background-color: #fff;
    padding: 80px 0;
}

.reviews-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.reviews-column, .faq-column {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.reviews-column h3, .faq-column h3 {
    font-size: 1.8rem;
    color: #0a2c5e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a017;
}

.reviews-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-grid {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
    padding-right: 10px;
}

.reviews-grid::-webkit-scrollbar {
    width: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 3px;
}

.review-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.add-review-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(10, 44, 94, 0.1);
}

.add-review-section h4 {
    font-size: 1.3rem;
    color: #0a2c5e;
    margin-bottom: 20px;
}

.add-review-section .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.add-review-section .form-group {
    margin-bottom: 15px;
}

.add-review-section label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.add-review-section input,
.add-review-section select,
.add-review-section textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.add-review-section textarea {
    min-height: 80px;
}

.add-review-section .btn-secondary {
    width: 100%;
    padding: 12px;
}

/* FAQ Styles */
.faq-container {
    max-height: 700px;
    overflow-y: auto;
    padding-right: 10px;
}

.faq-container::-webkit-scrollbar {
    width: 6px;
}

.faq-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.faq-container::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 3px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f2f5;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #0a2c5e;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #d4a017;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    background-color: #fff;
}

.faq-item[open] .faq-answer {
    display: block;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .reviews-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reviews-column, .faq-column {
        padding: 25px;
    }
    
    .reviews-grid {
        max-height: 350px;
    }
    
    .faq-container {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .reviews-faq-section {
        padding: 60px 0;
    }
    
    .reviews-column, .faq-column {
        padding: 20px;
    }
    
    .add-review-section .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .reviews-grid {
        max-height: 300px;
    }
    
    .faq-container {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .reviews-column h3, .faq-column h3 {
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}
/* ============================================
   PHONE NUMBER INPUT STYLES
   ============================================ */

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.country-code {
    padding: 14px 15px;
    background-color: #f8f9fa;
    color: #0a2c5e;
    font-weight: 600;
    border-right: 1px solid #ddd;
    min-width: 70px;
    text-align: center;
}

.phone-input-container input {
    border: none;
    padding: 14px 15px;
    flex: 1;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.phone-input-container input:focus {
    outline: none;
    box-shadow: none;
}

.phone-hint {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* Remove spinner from number input */
input[type="tel"]::-webkit-outer-spin-button,
input[type="tel"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="tel"] {
    -moz-appearance: textfield;
}

/* Phone input validation styles */
.phone-input-container input:valid {
    border-color: #28a745;
}

.phone-input-container input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Format placeholder */
.phone-input-container input::placeholder {
    color: #999;
    opacity: 1;
}
/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 58px;
        max-width: 210px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
        color: white;
        border-radius: 10px;
        transition: all 0.3s ease;
        z-index: 1001;
        border: none;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(10, 44, 94, 0.25);
        position: relative;
    }
    
    .mobile-menu-btn:hover {
        background: linear-gradient(135deg, #d4a017, #e4b037);
        transform: scale(1.05) rotate(5deg);
        box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
    }
    
    .mobile-menu-btn.active {
        background: linear-gradient(135deg, #d4a017, #e4b037);
        transform: rotate(90deg);
    }
    
    .mobile-menu-btn i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    /* Mobile Menu Container */
    .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 249, 250, 0.99) 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 100px 20px 40px;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: menuSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        margin: 0;
        box-sizing: border-box;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    /* Menu Items */
    .nav-list li {
        width: 100%;
        margin: 0;
        position: relative;
        border-bottom: 1px solid rgba(10, 44, 94, 0.1);
        transition: background-color 0.3s ease;
        list-style: none;
    }
    
    .nav-list li:first-child {
        border-top: 1px solid rgba(10, 44, 94, 0.1);
    }
    
    .nav-list li:hover {
        background-color: rgba(10, 44, 94, 0.05);
    }
    
    /* Menu Links */
    .nav-link {
        padding: 22px 20px;
        margin: 0;
        font-size: 1.15rem;
        text-align: left;
        color: #0a2c5e;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 0.3px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Separator Line Style */
    .nav-link::after {
        content: '';
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(10, 44, 94, 0.15), transparent);
    }
    
    .nav-list li:last-child .nav-link::after {
        display: none;
    }
    
    /* Services dropdown indicator in mobile */
    .nav-item-has-dropdown .nav-link::after {
        display: none;
    }
    
    .nav-item-has-dropdown .nav-link::before {
        content: '›';
        font-family: 'Inter', sans-serif;
        font-size: 1.8rem;
        color: #0a2c5e;
        font-weight: 700;
        transition: all 0.3s ease;
        margin-left: 10px;
        order: 2;
    }
    
    .nav-item-has-dropdown.open .nav-link::before {
        transform: rotate(90deg);
        color: #d4a017;
    }
    
    .nav-link:hover::before {
        opacity: 1;
        color: #0a2c5e;
    }
    
    /* Active State */
    .nav-link.active {
        background: linear-gradient(to right, rgba(10, 44, 94, 0.08), rgba(212, 160, 23, 0.08));
        color: #0a2c5e;
        font-weight: 600;
        border-left: 5px solid #d4a017;
    }
    
    .nav-link.active::after {
        background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.25), transparent);
    }
    
    /* Services dropdown in mobile menu - FIXED */
    .nav-item-has-dropdown {
        position: static;
        display: flex;
        flex-direction: column;
    }

    .nav-dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        display: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-item-has-dropdown.open .nav-dropdown {
        display: block;
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-dropdown li {
        border-bottom: none;
        border-top: none;
        background-color: rgba(10, 44, 94, 0.03);
    }

    .nav-dropdown a {
        padding: 16px 30px;
        font-size: 1rem;
        color: #0a2c5e;
        font-weight: 500;
        display: flex;
        align-items: center;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-dropdown a:hover {
        background-color: rgba(212, 160, 23, 0.1);
        color: #0a2c5e;
        border-left: 3px solid #d4a017;
    }

    .nav-dropdown a::before {
        content: '•';
        margin-right: 12px;
        color: #d4a017;
        font-size: 1.2rem;
    }

    .nav-dropdown a.active {
        background-color: rgba(212, 160, 23, 0.15);
        color: #0a2c5e;
        font-weight: 600;
        border-left: 3px solid #0a2c5e;
    }

    /* Mobile content adjustments */
    .company-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content h1, .page-hero h1 {
        font-size: 2.4rem;
    }

    .page-hero {
        padding: 70px 0 45px;
    }

    .page-hero p {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-card, .service-main-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        height: 52px;
        max-width: 190px;
    }
    
    .hero-content h1, .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-link {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        width: 46px;
        height: 46px;
    }
    
    .nav-dropdown a {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
}
/* Policies Button */
.btn-policies {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-left: 20px;
}

.btn-policies:hover {
    background: linear-gradient(135deg, #1a3c6e, #2a4c7e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 44, 94, 0.3);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #0a2c5e, #d4a017);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

/* Cookie/Privacy Notice Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-notice.show {
    display: flex;
}

.cookie-notice-content {
    flex: 1;
    min-width: 250px;
}

.cookie-notice-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-notice-content a {
    color: #d4a017;
    text-decoration: underline;
}

.cookie-notice-content a:hover {
    color: #e4b037;
}

.cookie-notice-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-notice-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice-btn-accept {
    background: linear-gradient(135deg, #d4a017, #e4b037);
    color: white;
}

.cookie-notice-btn-accept:hover {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    transform: translateY(-2px);
}

.cookie-notice-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-notice-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-content {
        width: 100%;
    }
    
    .cookie-notice-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-notice-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a2c5e, #1a3c6e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(10, 44, 94, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #d4a017, #e4b037);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Mobile adjustments for policies button */
@media (max-width: 768px) {
    .btn-policies {
        display: none; /* Hide on mobile, will show in menu */
    }
    
    /* Add policies to mobile menu */
    .nav-list li:nth-last-child(2)::after {
        content: '';
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(10, 44, 94, 0.15), transparent);
    }
    
    /* Back to top button mobile adjustments */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Menu Animation */
@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.img-fallback {
    display: none;
    /* This will only show if the image fails to load */
}