/* =============================================
   Global Styles & Variables
   ============================================= */
:root {
    --primary-gold: #0a3756;
    --dark-blue: #a8a8a8;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --border-color: #e0ddd5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
    background: var(--primary-gold);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue) !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem !important;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
    background: linear-gradient(to right, rgba(35, 47, 69, 0.95) 35%,  transparent 65%),
                url('../images/hero-home.jpg') center/cover;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.logo {
    height: 100px;
}


.hero-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .btn-primary {
    background: #a8a8a8;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-section .btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 204, 204, 0.3);
    color: #0a3756;
}

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

/* =============================================
   Page Header
   ============================================= */
.page-header {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(26, 35, 50, 0.85)),
                url('../images/frame.png') center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* =============================================
   Section Titles
   ============================================= */
.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

/* =============================================
   Services Section
   ============================================= */
.services-intro {
    padding: 80px 0 40px;
    background: white;
}

.services-detail {
    padding: 80px 0;
    background: white;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    opacity: 0.8;
}

.service-detail-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-item .service-number {
    font-size: 72px;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.service-item h3,
.service-detail-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-item p,
.service-detail-item p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-detail-item p {
    line-height: 1.9;
    margin-bottom: 15px;
}

/* =============================================
   About Section
   ============================================= */
.about-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-image {
    border-radius: 0;
    box-shadow: 20px 20px 0 var(--primary-gold);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.about-text {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* =============================================
   Values Section
   ============================================= */
.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.value-card {
    background: white;
    padding: 40px;
    height: 100%;
    border: 2px solid var(--border-color);
    transition: all 0.4s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =============================================
   Team Section
   ============================================= */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 5px solid var(--primary-gold);
    transition: all 0.3s;
}

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

.team-member h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.team-member .role {
    font-size: 14px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-member p {
    color: #555;
    line-height: 1.8;
}

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: white;
    text-align: center;
}

.stats-section .stat-item {
    margin-bottom: 30px;
}

.stats-section .stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Cormorant Garamond', serif;
    display: block;
    margin-bottom: 10px;
}

.stats-section .stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* =============================================
   Contact Cards
   ============================================= */
.contact-section {
    padding: 80px 0;
    background: white;
}

.locations-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 40px;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: all 0.4s;
    z-index: 0;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover a {
    color: white;
    position: relative;
    z-index: 1;
}

.contact-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s;
    position: relative;
    z-index: 1;
}

.locations-section .contact-card h4 {
    margin-bottom: 25px;
}

.contact-card p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
    transition: color 0.4s;
    position: relative;
    z-index: 1;
}

.locations-section .contact-card p {
    margin-bottom: 15px;
}

.contact-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.4s;
    position: relative;
    z-index: 1;
}

.contact-card a:hover {
    text-decoration: underline;
}

.location-icon {
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    transition: color 0.4s;
    position: relative;
    z-index: 1;
}

.contact-card:hover .location-icon {
    color: white;
}

/* =============================================
   Contact Form
   ============================================= */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
}

textarea.form-control {
    min-height: 150px;
}

.btn-submit {
    background: #0a3756;
    color: white;
    border: none;
    padding: 14px 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #a8a8a8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #0a3756;
}

.btn-alternative {
    color: #2a7ab6
}

/* =============================================
   Info Cards
   ============================================= */
.info-section {
    padding: 80px 0;
    background: white;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    height: 100%;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.info-card h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: #555;
    margin-bottom: 0;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.accordion-item {
    border: 2px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 0;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gold);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    background: white;
    color: #555;
    line-height: 1.8;
}

.accordion-body ul {
    margin-left: 20px;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-gold {
    background: #0a3756;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #a8a8a8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 179, 179, 0.3);
    color: #0a3756;
}

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 40px 0 20px;
}

footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s;
}

footer a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-image {
        box-shadow: 10px 10px 0 var(--primary-gold);
        height: 350px;
    }

    .service-number {
        font-size: 48px;
    }

    .service-detail-item .service-number {
        font-size: 48px;
    }
}


/* Update service-item to flex layout */
.service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content {
    flex: 1;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item:hover .service-image img {
    transform: scale(1.05);
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-image {
        width: 120px;
        height: 120px;
    }
}


/* Services section with background image */
.services-with-background {
    background-image: url('../images/services-background.png');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

/* Optional: Add a light overlay to make text more readable */
.services-with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.152); /* White overlay - adjust opacity */
    z-index: 0;
}

.services-with-background .container {
    position: relative;
    z-index: 1;
}

/* Alternative: Dark overlay */
.services-with-background::before {
    background: rgba(26, 35, 50, 0.356);
}

.btn-special {
    background: #0a3756a8;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-special:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 204, 204, 0.3);
    color: #0a3756;
}

.read-more-link {
    font-weight: bold;
    color: #c4c2c2;
    text-decoration: none;
}

.read-more-link:hover {
    text-decoration: underline;
}