/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #001f54;
    --light-navy: #003d82;
    --dark-navy: #001233;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #333333;
    --border-color: #dddddd;
    --overlay-color: rgba(0, 31, 84, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background-color: var(--navy-blue);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo {
    max-height: 64px;
    width: auto;
    display: block;
}

.logo-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .site-logo {
        max-height: 48px;
    }
    .logo-title {
        display: none;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4da6ff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4da6ff;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 31, 84, 0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    backdrop-filter: blur(8px);
}

body.sticky-nav-active {
    padding-top: 88px;
}

.back-to-top,
.whatsapp-float {
    position: fixed;
    right: 20px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top {
    bottom: 20px;
    background: linear-gradient(135deg, #4da6ff, #001f54);
}

.whatsapp-float {
    bottom: 90px;
    background: #25D366;
}

.back-to-top.show,
.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,245,0.98));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 65px rgba(0,0,0,0.14);
}

.service-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
}

.service-card-content {
    padding: 2rem;
}

.service-card-content .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.4rem;
    background: rgba(0,31,84,0.08);
    margin-bottom: 1rem;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
    color: var(--navy-blue);
}

.service-card-content p {
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: var(--text-gray);
}

.service-card-content .feature-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero {
    position: relative;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-home {
    background-image: url('images/hero-home.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Headers */
.page-header {
    position: relative;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-header {
    background-image: url('images/header-about.jpg');
}

.services-header {
    background-image: url('images/header-services.jpg');
}

.vision-header {
    background-image: url('images/header-vision.jpg');
}

.contact-header {
    background-image: url('images/header-contact.jpg');
}

.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--navy-blue);
    border-color: var(--white);
    margin-right: 1rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--navy-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--navy-blue), var(--light-navy));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* ===================================
   INTRO SECTIONS
   =================================== */
.intro,
.services-intro,
.vision-intro,
.contact-intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
}

/* ===================================
   FEATURED SECTIONS
   =================================== */
.featured-section {
    padding: 5rem 0;
}

.featured-section.bg-light {
    background-color: var(--light-gray);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-content h2 {
    color: var(--navy-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.commitment-points .point {
    background-color: var(--light-gray);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--navy-blue);
    border-radius: 4px;
}

.commitment-points .point strong {
    color: var(--navy-blue);
}

/* ===================================
   FEATURES GRID
   =================================== */
.why-choose {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,31,84,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   STATISTICS SECTION
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    padding: 4rem 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   SERVICES PREVIEW
   =================================== */
.services-preview {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-preview-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--navy-blue);
    transition: all 0.3s ease;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-preview-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-preview-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-arrow {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--light-navy);
    padding-left: 5px;
}

/* ===================================
   INDUSTRIES SECTION
   =================================== */
.industries-section {
    padding: 5rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--navy-blue);
    box-shadow: 0 5px 15px rgba(0,31,84,0.1);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */
.experience-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.external-link {
    color: var(--navy-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--navy-blue);
    transition: all 0.3s ease;
}

.external-link:hover {
    color: var(--light-navy);
    border-bottom-color: var(--light-navy);
}

/* ===================================
   ADVANTAGES SECTION
   =================================== */
.advantages-section {
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.advantage-item {
    text-align: center;
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-item p {
    line-height: 1.7;
    color: var(--text-gray);
}

/* ===================================
   SERVICES CONTENT
   =================================== */
.services-content {
    padding: 5rem 0;
}

.service-item {
    background-color: var(--white);
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(0,31,84,0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
}

.service-item h2 {
    color: var(--navy-blue);
    font-size: 1.8rem;
}

.service-item p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background-color: var(--light-gray);
    color: var(--navy-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    line-height: 1.7;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {
    padding: 5rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.process-step p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===================================
   VISION & MISSION SECTIONS
   =================================== */
.vision-section {
    padding: 5rem 0;
}

.vision-box {
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    color: var(--white);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,31,84,0.2);
}

.vision-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vision-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vision-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid var(--navy-blue);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,31,84,0.15);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.mission-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-card p {
    line-height: 1.7;
}

/* ===================================
   VALUES SECTION
   =================================== */
.values-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: var(--light-navy);
    transform: scale(1.05);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    line-height: 1.7;
    opacity: 0.95;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment-section {
    padding: 5rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.commitment-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--navy-blue);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.commitment-item h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.commitment-item p {
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */
.contact-methods {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.method-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,31,84,0.12);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--navy-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.featured-image-contact {
    margin-bottom: 2rem;
}

.featured-image-contact img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--navy-blue);
}

.benefit-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: var(--navy-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-notice {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-notice.success {
    background-color: #e8f8f5;
    border: 1px solid #2f9a7a;
    color: #0f5132;
}

.form-notice.error {
    background-color: #fdecea;
    border: 1px solid #d9534f;
    color: #842029;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(0,31,84,0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ===================================
   BUSINESS HOURS
   =================================== */
.business-hours {
    padding: 5rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.hours-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hours-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.hours-item p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location-section {
    padding: 5rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.map-placeholder iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-details {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    height: fit-content;
}

.location-details h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.location-details p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-preview {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-gray);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ===================================
   BACKGROUND UTILITIES
   =================================== */
.bg-light {
    background-color: var(--light-gray);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--navy-blue);
        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;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        display: block;
        margin: 0.5rem auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .features-grid,
    .services-preview-grid,
    .industries-grid,
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.service-item,
.industry-card,
.mission-card,
.value-card {
    animation: fadeIn 0.6s ease-out;
}