:root {
    /* ===== Premium Navy & Gold Palette ===== */
    --navy: #0B1F3A;
    --navy-dark: #061426;
    --gold: #C8A23A;
    --gold-light: #E6C96A;
    --white: #FFFFFF;
    --light-gray: #F4F5F7;

    /* ===== Mapped theme roles (kept for structural compatibility) ===== */
    --primary-color: var(--gold);
    --primary-dark: #A8842E;
    --primary-light: var(--gold-light);
    --secondary-color: var(--gold-light);
    --dark-bg: var(--navy-dark);
    --dark-card: var(--navy);
    --text-primary: var(--white);
    --text-secondary: rgba(244, 245, 247, 0.75);
    --accent-color: var(--gold-light);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --border-color: rgba(200, 162, 58, 0.25);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

/* ============= CONTAINER & SPACING ============= */
.container {
    max-width: 1200px;
}

.py-120 {
    padding: 120px 0;
}

.max-width-600 {
    max-width: 600px;
    margin: 0 auto;
}

.min-vh-100 {
    min-height: 100vh;
}

/* ============= SECTION STYLING ============= */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============= NAVIGATION ============= */
.navbar-custom {
    background: rgba(6, 20, 38, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar-custom.navbar-scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-fast);
}

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

.btn-contact-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    color: var(--navy) !important;
    margin-left: 1rem !important;
}

.btn-contact-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 162, 58, 0.3);
}

/* ============= HERO SECTION ============= */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 50%, #061426 100%);
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 162, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 201, 106, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, var(--primary-color), rgba(200, 162, 58, 0)),
        radial-gradient(2px 2px at 60% 70%, var(--secondary-color), rgba(230, 201, 106, 0)),
        radial-gradient(1px 1px at 50% 50%, var(--accent-color), rgba(230, 201, 106, 0)),
        radial-gradient(1px 1px at 80% 10%, var(--primary-color), rgba(200, 162, 58, 0)),
        radial-gradient(2px 2px at 90% 60%, var(--secondary-color), rgba(230, 201, 106, 0)),
        radial-gradient(1px 1px at 30% 80%, var(--accent-color), rgba(230, 201, 106, 0));
    background-repeat: repeat;
    background-size: 200% 200%;
    opacity: 0.5;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    font-weight: 600;
    border-radius: 30px;
    padding: 0.875rem 2rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--navy) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 162, 58, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-primary);
    color: var(--text-primary) !important;
}

.btn-outline-light:hover {
    background: rgba(200, 162, 58, 0.1);
    border-color: var(--primary-color);
}

.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-fast);
}

.btn-hover-effect:hover::before {
    left: 100%;
}

.btn-hover-secondary {
    position: relative;
    overflow: hidden;
}

.btn-hover-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(200, 162, 58, 0.2);
    transition: left var(--transition-fast);
}

.btn-hover-secondary:hover::before {
    left: 100%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(11, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card p {
    margin: 0;
    font-weight: 600;
    font-size: 0.875rem;
}

.card-1 {
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: 20px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(200, 162, 58, 0.3);
}

.rounded-custom {
    border-radius: 20px;
    overflow: hidden;
}

/* ============= ABOUT SECTION ============= */
.about-section {
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 100%);
    position: relative;
}

.about-content {
    margin-left: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
}

.feature-text h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin: 0;
}

/* ============= SERVICES SECTION ============= */
.services-section {
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 50%, #061426 100%);
}

.services-grid,
.why-choose-grid,
.testimonials-grid {
    row-gap: 30px;
}

.service-card,
.why-choose-card,
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card p,
.why-choose-card p,
.testimonial-text {
    flex-grow: 1;
}

.service-cta,
.testimonial-author {
    margin-top: auto;
}

.services-grid>div {
    display: flex;
}

.service-card {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.6), rgba(6, 20, 38, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 162, 58, 0.2) 0%, transparent 70%);
    transition: all var(--transition-normal);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: -20%;
    right: -20%;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 162, 58, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    background: rgba(200, 162, 58, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.feature-tag:hover {
    background: var(--primary-color);
    color: var(--navy);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.service-cta:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* ============= WHY CHOOSE US SECTION ============= */
.why-choose-section {
    background: linear-gradient(135deg, #0B1F3A 0%, #061426 100%);
}

/* .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 2rem;
    justify-content: center;
} */

.why-choose-card {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.5), rgba(6, 20, 38, 0.7));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.why-choose-card:hover::after {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.why-choose-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-choose-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(200, 162, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============= TESTIMONIALS SECTION ============= */
.testimonials-section {
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 100%);
}

/* .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 2rem;
    justify-content: center;
} */

.testimonial-card {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.6), rgba(6, 20, 38, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(200, 162, 58, 0.2);
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(200, 162, 58, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #E6C96A;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 0.95rem;
}

.author-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.8rem;
}

/* ============= FAQ SECTION ============= */
.faq-section {
    background: linear-gradient(135deg, #0B1F3A 0%, #061426 100%);
}

.faq-content {
    margin-right: 2rem;
}

.faq-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(200, 162, 58, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
}

.faq-cta p {
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.accordion {
    gap: 1rem;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.5), rgba(6, 20, 38, 0.7));
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    transition: all var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background: rgba(200, 162, 58, 0.1);
    color: var(--primary-color);
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C8A23A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    opacity: 1;
}

.accordion-button:hover {
    background: rgba(200, 162, 58, 0.05);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    background: rgba(6, 20, 38, 0.3);
    border-top: 1px solid var(--border-color);
}

/* ============= CTA SECTION ============= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(11, 31, 58, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-color) !important;
}

.cta-buttons .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ============= CONTACT SECTION ============= */
.contact-section {
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 100%);

}

.contact-info-card {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.5), rgba(6, 20, 38, 0.7));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 162, 58, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0 auto 1rem;
    transition: transform var(--transition-fast);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.6), rgba(6, 20, 38, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
}

.contact-form-wrapper h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.form-control {
    background: rgba(6, 20, 38, 0.4);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-control:focus {
    background: rgba(6, 20, 38, 0.65);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(200, 162, 58, 0.1);
}

.form-control option {
    background: var(--dark-card);
    color: var(--text-primary);
}

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

.contact-features h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.contact-feature-item i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-feature-item h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-feature-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* ============= FOOTER ============= */
.footer-section {
    background: linear-gradient(135deg, #061426 0%, #0B1F3A 100%);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 162, 58, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--navy);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

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

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    /* Horizontal center */
    align-items: center;
    /* Vertical center */
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}


/* ============= COUNTER ANIMATION ============= */
.counter {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .py-120 {
        padding: 60px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }

    .about-content {
        margin-left: 0;
        margin-top: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, auto));
        justify-content: center;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, auto));
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, auto));
        justify-content: center;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .faq-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        margin-bottom: 2rem;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

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

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

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

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .contact-info-card,
    .contact-form-wrapper,
    .service-card,
    .testimonial-card,
    .why-choose-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .cta-buttons .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

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

.text-end {
    text-align: end;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.opacity-50 {
    opacity: 0.5;
}

/* ============= ACCESSIBILITY ============= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============= SCROLL BEHAVIOR ============= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}