/* ==================== VARIABLES & DESIGN SYSTEM ==================== */
:root {
    --primary-dark: #001f47;
    --primary-light: #2d4a68;
    --accent-gold: #c89d4a;
    --accent-gold-light: #d4a574;
    --bg-light: #f5f7fa;
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --border-light: #e0e6ed;
    --white-75: rgba(255, 255, 255, 0.75);
    --white-50: rgba(255, 255, 255, 0.5);
}

/* ==================== GENERAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

/* ==================== TOP INFO BAR ==================== */
.top-info-bar {
    background-color: var(--primary-dark);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.info-bar-left, .info-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white-75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item:hover {
    color: var(--accent-gold);
}

.info-item i {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: var(--white-75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .info-bar-left, .info-bar-right {
        gap: 1rem;
    }
    
    .top-info-bar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .info-item {
        gap: 0.4rem;
    }
}

@media (max-width: 576px) {
    .info-bar-left {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .top-info-bar {
        padding: 0.5rem 0;
        font-size: 0.75rem;
    }
    
    .info-item {
        gap: 0.3rem;
    }
    
    .info-item i {
        font-size: 0.85rem;
    }
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-dark);
}

.display-4, .display-5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.2rem;
    color: var(--primary-dark) !important;
}

.navbar-logo {
    height: 65px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 40px;
        max-width: 120px;
    }
    
    /* Mobile navbar menu improvements */
    .navbar-collapse {
        padding-top: 0.5rem;
    }
    
    .navbar-nav {
        gap: 0.25rem;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.95rem;
    }
    
    /* Fix CTA button visibility on mobile */
    .navbar-nav .btn-cta {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        margin-right: 0 !important;
        width: 100%;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
        text-align: center;
        display: block !important;
    }
    
    .navbar-nav .btn-cta:hover {
        transform: scale(0.98);
    }
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    min-height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 600px;
}

/* Mobile adjustments */
@media (max-width: 1199px) {
    .hero-section {
        min-height: 650px;
    }
    .hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 700px;
    }
    .hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 750px;
        padding-bottom: 2rem;
    }
    .hero-background {
        min-height: 750px;
    }
    .hero-content {
        padding: 60px 0;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 800px;
        padding-bottom: 2rem;
    }
    .hero-background {
        min-height: 800px;
    }
    .hero-content {
        padding: 50px 0;
        max-width: 100%;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 40px 0;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 60px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-content {
        padding: 60px 20px 60px 20px !important;
    }
}

.text-white-75 {
    color: var(--white-75);
}

.text-white-50 {
    color: var(--white-50);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.page-header h1 {
    color: white;
}

.page-header .lead {
    color: var(--white-75);
}

/* ==================== FEATURES SECTION ==================== */
.feature-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==================== ABOUT SECTION ==================== */
.about-image-container {
    position: relative;
}

.stats-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent-gold);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.stats-badge i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stats-badge strong {
    display: block;
    font-size: 1.8rem;
}

.stats-badge small {
    display: block;
    font-size: 0.85rem;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-detail-header i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-right: 1.5rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓ ";
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.why-list {
    list-style: none;
}

.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
}

.why-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    border-left: 4px solid var(--accent-gold);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ==================== INDUSTRIES SECTION ==================== */
.industry-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.industry-icon i {
    display: block;
}

/* ==================== TESTIMONIAL CARDS ==================== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.position {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    background-color: var(--accent-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    flex-grow: 1;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: var(--accent-gold-light);
    transform: translateX(5px);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding-top: 3rem;
}

.footer h6 {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.text-white-75 {
    color: var(--white-75);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

/* ==================== MISSION & VALUES ==================== */
.mission-card {
    background: linear-gradient(135deg, rgba(200, 157, 74, 0.1) 0%, rgba(26, 58, 82, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: inline-block;
}

/* ==================== TEAM SECTION ==================== */
.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h5 {
    margin-bottom: 0.5rem;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.stats-section h3 {
    color: var(--accent-gold);
}

.stats-section p {
    color: var(--white-75);
}

/* ==================== CERTIFICATION BADGES ==================== */
.cert-badge {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
}

.cert-badge i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* ==================== PRICING CARDS ==================== */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-top-color: var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-highlight {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.currency {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 1.5rem 0;
    flex-grow: 1;
}

.package-features li {
    padding: 0.6rem 0;
    color: var(--text-muted);
}

.package-features li i {
    color: var(--accent-gold);
    margin-right: 0.8rem;
    font-weight: 700;
}

.package-features li.unavailable {
    opacity: 0.5;
    color: #ccc;
}

/* ==================== SERVICE PAGE STYLES ==================== */
.why-service-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.why-service-card i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    min-width: 30px;
    margin-top: 0.2rem;
}

.why-service-card h5 {
    margin-bottom: 0.5rem;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-container {
    padding: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.map-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(200, 157, 74, 0.25);
}

/* ==================== BLOG PAGE STYLES ==================== */
.blog-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

.blog-item {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    border: 1px solid var(--border-light);
}

.newsletter-form input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(200, 157, 74, 0.25);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-badge {
        position: static;
        display: inline-block;
        margin-top: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .blog-filters {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .cta-section {
        text-align: center;
    }

    .cta-section .col-lg-4 {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .feature-icon,
    .service-icon,
    .value-icon,
    .industry-icon {
        font-size: 2rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .price-highlight .amount {
        font-size: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
}

/* ==================== VIDEO SECTION ==================== */
.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-image: 
        linear-gradient(135deg, rgba(26, 45, 66, 0.85) 0%, rgba(45, 74, 104, 0.85) 100%),
        url('https://images.unsplash.com/photo-1512453475878-48ce60646625?w=1400&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ==================== GOOGLE MAP STYLING ==================== */
.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: auto;
    min-height: 500px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        min-height: 300px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 24px rgba(200, 157, 74, 0.2);
    }
}

/* Desktop - Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .video-container {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto 2rem;
        padding: 0;
        animation: fadeInUp 0.8s ease-out;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Laptop/Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-container {
        width: 90%;
        max-width: 900px;
        margin: 0 auto 2rem;
        padding: 0;
        animation: fadeInUp 0.8s ease-out;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0;
        animation: fadeInUp 0.8s ease-out;
        background-attachment: scroll;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Landscape / Small Tablet (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .video-container {
        width: 97%;
        max-width: 100%;
        margin: 0 auto 1rem;
        padding: 0;
        animation: fadeInUp 0.8s ease-out;
        background-attachment: scroll;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Portrait (Below 576px) */
@media (max-width: 575px) {
    .video-container {
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        border-radius: 4px;
        animation: fadeInUp 0.8s ease-out;
        background-attachment: scroll;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Desktop - Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .video-container {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Laptop/Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-container {
        width: 90%;
        max-width: 900px;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Landscape / Small Tablet (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .video-container {
        width: 97%;
        max-width: 100%;
        margin: 0 auto 1rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Portrait (Below 576px) */
@media (max-width: 575px) {
    .video-container {
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        border-radius: 4px;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Desktop - Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .video-container {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Laptop/Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-container {
        width: 90%;
        max-width: 900px;
        margin: 0 auto 2rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .video-container {
        width: 95%;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Landscape / Small Tablet (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .video-container {
        width: 97%;
        max-width: 100%;
        margin: 0 auto 1rem;
        padding: 0;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

/* Mobile Portrait (Below 576px) */
@media (max-width: 575px) {
    .video-container {
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        border-radius: 4px;
    }

    .video-container video {
        width: 100%;
        height: auto;
    }
}

    .video-container video {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .video-container {
        margin: 0 auto 1rem;
    }

    .video-container video {
        height: 250px;
    }
}

/* ==================== SETUP CARDS ==================== */
.setup-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.setup-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.setup-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.setup-header i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.setup-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.setup-list {
    list-style: none;
    padding-left: 0;
}

.setup-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.setup-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ==================== SERVICE BOX ==================== */
.service-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-gold);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-box i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-box h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.service-list-home {
    list-style: none;
    padding-left: 0;
}

.service-list-home li {
    padding: 0.8rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-list-home i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.text-primary {
    color: var(--primary-dark) !important;
}

.text-warning {
    color: var(--accent-gold) !important;
}

/* ==================== ANIMATIONS & TRANSITIONS ==================== */
button {
    cursor: pointer;
}

a {
    transition: color 0.3s ease;
}

/* ==================== UTILITY CLASSES ==================== */
.text-muted {
    color: var(--text-muted) !important;
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Smooth scrolling for anchor links */
:target {
    scroll-margin-top: 100px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* Mobile responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}