/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #c89b3c;
    color: white;
}

.btn-primary:hover {
    background-color: #b38732;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 155, 60, 0.3);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-brand .brand-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: #c89b3c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -2px;
}

/* Brand icon styling */
.brand-icon {
    font-size: 1.8rem;
    color: #c89b3c;
    display: inline-block;
    line-height: 1;
}

.nav-brand .brand-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: #e0e1dd;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.nav-brand a:hover .brand-main {
    color: #b38732;
    transform: scale(1.02);
}

.nav-brand a:hover .brand-sub {
    color: #c89b3c;
}

.nav-brand a:hover .brand-icon {
    color: #b38732;
    transform: scale(1.05);
}

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

.nav-link {
    color: #e0e1dd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c89b3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c89b3c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #e0e1dd;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)),
                url('https://placehold.co/1920x1080/0d1b2a/e0e1dd?text=Financial+District+Skyline') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #e0e1dd;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #c89b3c;
    font-weight: 300;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #0d1b2a;
}

/* ===== SERVICES SUMMARY ===== */
.services-summary {
    background-color: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #c89b3c;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

/* Headings with icons on services page */
.heading-with-icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.heading-icon {
    color: #c89b3c;
    font-size: 1.2em;
    line-height: 1;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #c89b3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b38732;
}

/* ===== STATISTICS ===== */
.statistics {
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #c89b3c;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #0d1b2a;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #c89b3c;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #b38732;
    transform: scale(1.1);
}

/* ===== CALL TO ACTION ===== */
.cta {
    background-color: #0d1b2a;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 2rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.member-position {
    color: #c89b3c;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: white;
    padding: 4rem 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-section h3 {
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.mission-section p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.company-history h3 {
    color: #0d1b2a;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c89b3c;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background-color: #c89b3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

.values-section h3 {
    color: #0d1b2a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: #c89b3c;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: white;
    padding: 4rem 0;
}

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

.contact-info h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.contact-item i {
    color: #c89b3c;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c89b3c;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: #0d1b2a;
    color: #e0e1dd;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #c89b3c;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e1dd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c89b3c;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #c89b3c;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #b38732;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a3f5f;
    color: #6c757d;
}

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

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-left"] {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate,
[data-aos="fade-right"] {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Typography adjustments for mobile */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Navigation mobile styles */
    .nav-brand .brand-main {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .nav-brand .brand-sub {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        height: 80vh;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Statistics mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Contact section mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Team section mobile */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .member-photo {
        height: 260px;
    }
    
    .team-member {
        min-height: 400px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.9rem;
    }
    
    /* About section mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        max-width: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section padding mobile */
    section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-item {
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===== PAGE BANNER STYLES ===== */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 560px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.25s ease;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
}

.modal-close:hover { color: #0d1b2a; }

.form-success {
    margin-top: 1rem;
    color: #2e7d32;
}
.page-banner {
    height: 60vh;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)),
                url('https://placehold.co/1920x1080/0d1b2a/e0e1dd?text=Financial+Services+Banner') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

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

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #e0e1dd;
}

.banner-content p {
    font-size: 1.25rem;
    color: #c89b3c;
    font-weight: 300;
}

/* ===== SERVICES DETAILED PAGE STYLES ===== */
.services-detailed {
    background-color: white;
    padding: 4rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Service visual blocks (gradient background + large icon) */
.service-visual {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.visual-ib {
    background: radial-gradient(1200px 400px at -10% -10%, rgba(200,155,60,0.35), transparent),
                linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.visual-wm {
    background: radial-gradient(1200px 400px at 110% -10%, rgba(200,155,60,0.35), transparent),
                linear-gradient(135deg, #0d1b2a 0%, #243b55 100%);
}

.visual-sa {
    background: radial-gradient(1200px 400px at 50% 120%, rgba(200,155,60,0.35), transparent),
                linear-gradient(135deg, #0d1b2a 0%, #2a3f5f 100%);
}

.visual-icon {
    color: #e0e1dd;
    font-size: 4rem;
    opacity: 0.95;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-item:hover .visual-icon {
    transform: translateY(-4px);
    opacity: 1;
}

.service-content h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.service-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== PROCESS TIMELINE STYLES ===== */
.service-process {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    background-color: #c89b3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== TEAM PAGE STYLES ===== */
.team-leadership {
    background-color: white;
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.member-photo img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-photo img:hover {
    transform: scale(1.05);
}

.member-info h3 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.position {
    color: #c89b3c;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-credentials p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.member-social a {
    color: #c89b3c;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #b38732;
}

/* Senior Management Team */
.team-senior {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

.team-member-senior {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-senior:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.member-photo-senior img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.member-photo-senior img:hover {
    transform: scale(1.05);
}

.member-info-senior h3 {
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}

.member-info-senior .position {
    color: #c89b3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info-senior p {
    color: #6c757d;
    line-height: 1.6;
}

/* Team Values */
.team-values {
    background-color: white;
    padding: 4rem 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: #c89b3c;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-history {
    background-color: white;
    padding: 4rem 0;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c89b3c;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    background-color: #c89b3c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    color: #0d1b2a;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Mission and Values */
.mission-values {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-section h2 {
    color: #0d1b2a;
    margin-bottom: 1.5rem;
}

.mission-section p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-section h2 {
    text-align: center;
    color: #0d1b2a;
    margin-bottom: 3rem;
}

/* Certifications and Partners */
.certifications-partners {
    background-color: white;
    padding: 4rem 0;
}

.certifications h3,
.partners h3 {
    color: #0d1b2a;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.cert-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.cert-item span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.partners-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-carousel::-webkit-scrollbar {
    display: none;
}

.partner-item {
    flex-shrink: 0;
}

.partner-item img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.partner-item img:hover {
    transform: scale(1.05);
}

/* Company Stats */
.company-stats {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */
@media (max-width: 768px) {
    .page-banner {
        height: 40vh;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .member-photo-senior img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        max-width: none;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partners-carousel {
        gap: 1rem;
    }
    
    .partner-item img {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .service-item {
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid-senior {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .nav-toggle,
    .carousel-controls,
    .social-links,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
    }
    
    .service-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .page-banner {
        height: auto;
        background: none;
        color: black;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        margin-left: 0;
    }
}
