/* ---=== VARIABLES & GLOBAL STYLES ===--- */
:root {
    --primary-color: #F97316; /* Orange */
    --secondary-color: #111827; /* Dark Grey/Black */
    --light-color: #F9FAFB; /* Light Grey */
    --text-color: #374151;
    --white-color: #FFFFFF;
    --font-header: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --border-radius: 8px;
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Header height */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px;}
h3 { font-size: 1.5rem; }

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #FB923C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.btn-secondary {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.2);
}

.split-screen {
    display: flex;
    gap: 40px;
    align-items: center;
}

.split-screen > div {
    flex: 1;
}

/* ---=== PAGE TRANSITION ===--- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-transition img {
    width: 120px;
    animation: pulse-loader 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-loader {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

/* ---=== HEADER ===--- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    transition: box-shadow var(--transition-speed) ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

header .logo img {
    height: 50px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

.menu-toggle { display: none; }

/* ---=== HERO SECTION ===--- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #374151 100%);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px; /* Header height */
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    transform: scale(1.1);
}

.hero-background-shapes {
    display: none; /* Replaced by hero-background */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
    z-index: 1;
    flex: 1;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}
.hero-icon {
    width: 80px;
    margin-bottom: 10px;
}
.hero-text h1 {
    color: var(--white-color);
    margin-bottom: 20px;
}
.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-color);
}
.hero-cta {
    display: flex;
    gap: 20px;
}
.hero-image {
    flex: 1;
}
.hero-image img {
    width: 100%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% { transform: translatey(0px); }
	50% { transform: translatey(-20px); }
	100% { transform: translatey(0px); }
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: var(--container-width);
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    margin: 40px 0;
    z-index: 1;
}
.stat {
    text-align: center;
}
.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.stat p {
    color: var(--light-color);
}

/* ---=== EQUIPMENT SHOWCASE ===--- */
.equipment-showcase {
    background-color: var(--light-color);
    background-image: url('blueprint-background.png');
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: var(--white-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}
.filter-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
}
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all var(--transition-speed) ease;
}
.grid-item.tall {
    grid-row: span 2;
}
.grid-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}
.grid-item:hover img {
    transform: scale(1.05);
}
.grid-item .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white-color);
}
.card-content h3 {
    color: var(--white-color);
    margin-bottom: 5px;
}

/* ---=== WHY CHOOSE US ===--- */
.why-choose-us {
    background: linear-gradient(rgba(249, 115, 22, 0.85), rgba(249, 115, 22, 0.85)), url('why-choose-us-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

.why-choose-us .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose-us .section-header h2,
.why-choose-us .section-header p {
    color: var(--white-color);
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    grid-template-areas:
        "image features features"
        "image stats stats";
    align-items: center;
}

.wcu-image {
    grid-area: image;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.wcu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-features {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.feature-text h3 {
    color: var(--white-color);
    margin-bottom: 5px;
}

.wcu-stats {
    grid-area: stats;
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--white-color);
    line-height: 1;
}
.stat-item h3 span {
    font-size: 1.8rem;
    vertical-align: super;
}
.stat-item p {
    margin-top: 5px;
    color: var(--white-color);
    font-weight: 500;
}

.progress-bars {
    margin-top: 30px;
}
.progress-item {
    margin-bottom: 15px;
}
.progress-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.progress-bg {
    width: 100%;
    height: 25px;
    background: #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.progress-fg {
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: bold;
    width: 0;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.15;
    transition: opacity var(--transition-speed) ease;
}

.stat-card:hover::before {
    opacity: 0.25;
}

.stat-card-number {
    font-family: var(--font-header);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1;
    z-index: 1;
}
.stat-card-number span {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.stat-card-label {
    font-size: 1.1rem;
    margin-top: 10px;
    z-index: 1;
}

/* ---=== TESTIMONIALS ===--- */
.testimonials {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('testimonials-background.png');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}
.testimonials h2 {
    color: var(--white-color);
}
.testimonial-carousel {
    position: relative;
    min-height: 300px;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-card {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}
.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}
.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-card cite {
    font-weight: bold;
    color: var(--primary-color);
}
.carousel-nav {
    text-align: center;
    margin-top: 20px;
}
.carousel-nav button {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: all var(--transition-speed) ease;
}
.carousel-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ---=== FOOTER ===--- */
footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    max-width: 400px;
    align-items: center;
margin-right: -50px;
    
}
.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
    filter: brightness(0) 
     invert(1);
}
.footer-links ul {
    list-style: none;
}
.footer-links a, .footer-contact a {
    text-decoration: none;
    color: var(--light-color);
    transition: color var(--transition-speed) ease;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}
.footer-contact p {
    margin-bottom: 10px;
}
.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}
.footer-social a {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color var(--transition-speed) ease;
}
.footer-social a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4B5563;
    font-size: 0.9rem;
}
footer h4 {
    color: var(--white-color);
    margin-bottom: 15px;
}
mapouter {
    position: center;
    text-align: right;
    width: 100%;                                               height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio (adjust if needed) */
}
gmap_canvas {                                                                     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: none !important;
}
gmap_canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px; /* optional: rounded corners */
}
/* ---=== ABOUT PAGE ===--- */
#about-page .about-hero {
    position: relative;
    color: var(--white-color);
    background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)), url('about-hero-background.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}
.about-hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px;
    color: var(--white-color);
}
.about-hero p {
    font-size: 1.1rem;
    max-width: 600px;
}
.about-hero .split-screen {
    align-items: flex-start;
}
.about-hero .split-right {
    display: none; /* Remove the logo image as it's not needed with the new design */
}

.company-story { background-color: var(--white-color); }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item .timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }
.values-section { 
    position: relative;
    color: var(--white-color);
    padding: 100px 0;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('why-choose-us-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    z-index: -2;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.85); /* Dark overlay */
    background-image: linear-gradient(315deg, rgba(249, 115, 22, 0.3), rgba(17, 24, 39, 0.9) 70%);
    z-index: -1;
}

.values-section h2 { color: var(--white-color); }
.hex-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.value-card {
    width: 250px;
    height: 250px;
    perspective: 1000px;
    background: transparent;
    border: none;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: var(--border-radius); /* Ensure border radius is on the inner element */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    overflow: hidden; /* To contain pseudo-elements */
}

.card-front::before, .card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover .card-front::before,
.value-card:hover .card-back::before {
    opacity: 1;
}

.card-front i { font-size: 3rem; color: var(--primary-color); margin-bottom: 15px; }
.card-front h3 { color: var(--white-color); }
.card-back { transform: rotateY(180deg); }

.team-section { background-color: var(--light-color); }
.team-circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 40px auto;
}
.team-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.team-center-logo img { width: 60%; }
.team-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
}
.team-member {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin: -60px;
    text-align: center;
}
.team-member:nth-child(1) { transform: rotate(0deg) translate(-250px) rotate(0deg); }
.team-member:nth-child(2) { transform: rotate(0deg) translate(250px) rotate(0deg); }


.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.member-info { 
    opacity: 0; 
    transition: opacity var(--transition-speed); 
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}
.team-member:hover .member-info { opacity: 1; }
.member-info h4 { font-size: 1rem; margin-top: 5px; }
.member-info span { font-size: 0.8rem; color: var(--primary-color); }

/* ---=== VALUE PROPOSITION (ABOUT PAGE) ===--- */
.value-proposition-section,
.faq-section {
    background: linear-gradient(rgba(249, 115, 22, 0.85), rgba(249, 115, 22, 0.85)), url('why-choose-us-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

.value-proposition-section h2,
.faq-section h2 {
    color: var(--white-color);
}

.value-proposition-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
    color: var(--light-color);
}
.vp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.vp-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.vp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
.vp-icon {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 20px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.vp-card h3 {
    margin-bottom: 15px;
    color: var(--white-color);
}

.vp-card p {
    color: var(--light-color);
}

/* ---=== CONTACT PAGE ===--- */
#contact-page .contact-hero { 
    padding: 100px 0; 
    background: linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)), url('contact-background.png');
    background-size: cover;
    background-position: center;
}
.contact-hero .split-screen {
    background: transparent;
    padding: 0;
    align-items: stretch;
}
.contact-hero .split-left, .contact-hero .split-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}
.contact-hero .split-left {
    color: var(--white-color);
}
.contact-hero .split-right {
    
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.9);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.contact-form ::placeholder {
    color: #9ca3af;
}

.contact-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    justify-content: center;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.3);
    border-left-color: var(--primary-color);
}

.info-card .icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--white-color);
    margin-top: 0;
}
.info-card a {
    color: var(--light-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.info-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.info-card h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.info-card p {
    margin: 0;
    color: #d1d5db;
}

.accordion { max-width: 700px; margin: 0 auto; }
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}
.accordion-header h3 {
    color: var(--white-color);
}
.accordion-header i { transition: transform var(--transition-speed); }
.accordion-item.active .accordion-header i { transform: rotate(45deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.accordion-content p { padding: 0 0 20px; }
.map-section { padding: 0; }

/* ---=== RESPONSIVE DESIGN ===--- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .split-screen { flex-direction: column; text-align: center; }
    #contact-page .contact-hero .split-screen { gap: 20px; }
    .why-choose-us .split-screen { text-align: left; }
    .features-text h2 { text-align: center; }
    #contact-page .contact-hero .split-left h2 { text-align: left; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .timeline::after { left: 10px; }
    .timeline-item { width: 100%; padding-left: 40px; padding-right: 0; left: 0 !important; }
    .timeline-item .timeline-dot { left: 0; }
    .timeline-item:nth-child(odd) .timeline-content { text-align: left; }
    .why-choose-us-content { grid-template-columns: 1fr; }
    .stats-visuals { margin-top: 30px; }
}

@media (max-width: 768px) {
    header nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white-color);
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    header nav ul.active {
        max-height: 300px;
        padding: 20px 0;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .stats-bar { flex-direction: column; gap: 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { text-align: center; }
    .team-circle-container { width: 380px; height: 380px; }
    .team-member { width: 100px; height: 100px; margin: -50px; }
    .team-member img { width: 120px; height: 120px; }
    .team-member:nth-child(1) { transform: rotate(90deg) translate(-175px) rotate(-90deg); }
    .team-member:nth-child(2) { transform: rotate(90deg) translate(175px) rotate(-90deg); }
    .team-center-logo { width: 100px; height: 100px; }
}