/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    --primary-color: #D8A248;
    --secondary-color: #0E1A26;
    --accent-color: #1A2F3F;
    --dark-color: #0E1A26;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1E1E1E;
    --text-light: #666666;
    --logo-bg: #0E1A26;
    --logo-text: #D8A248;
    --gradient-1: linear-gradient(135deg, #D8A248 0%, #C8953A 100%);
    --gradient-2: linear-gradient(135deg, #0E1A26 0%, #1A2F3F 100%);
    --gradient-gold: linear-gradient(135deg, #D8A248 0%, #E8B85A 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(216, 162, 72, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(216, 162, 72, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--white);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Corporate Features Section
   =================================== */
.features-corporate {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-corporate {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e8e8e8;
    transition: var(--transition);
    position: relative;
}

.feature-item-corporate:last-child {
    border-bottom: none;
}

.feature-item-corporate::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.feature-item-corporate:hover::before {
    opacity: 1;
}

.feature-item-corporate:hover {
    padding-left: 1rem;
    background: linear-gradient(to right, rgba(216, 162, 72, 0.02), transparent);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.15;
    line-height: 1;
    min-width: 80px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.feature-item-corporate:hover .feature-number {
    opacity: 0.3;
    color: var(--primary-color);
}

.feature-content-corporate {
    flex: 1;
}

.feature-content-corporate h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-content-corporate h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.feature-content-corporate p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-top: 1rem;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--light-color);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-placeholder {
    font-size: 5rem;
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Corporate Services Section
   =================================== */
.services-corporate {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.service-item-corporate {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem 3rem;
    background: var(--white);
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transition: var(--transition);
    position: relative;
}

.service-item-corporate:nth-child(2n) {
    border-right: none;
}

.service-item-corporate:nth-child(n+3) {
    border-bottom: none;
}

.service-item-corporate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-item-corporate:hover::after {
    transform: scaleX(1);
}

.service-item-corporate:hover {
    background: linear-gradient(to bottom, rgba(216, 162, 72, 0.02), transparent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon-corporate {
    flex-shrink: 0;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(216, 162, 72, 0.1), rgba(14, 26, 38, 0.1));
    border: 2px solid rgba(216, 162, 72, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.service-item-corporate:hover .service-icon-wrapper::before {
    opacity: 0.1;
}

.service-item-corporate:hover .service-icon-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.service-icon-text {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-content-corporate {
    flex: 1;
}

.service-content-corporate h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.service-content-corporate h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.service-content-corporate p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    background: var(--gradient-2);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: var(--gradient-2);
    color: var(--white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   About Page
   =================================== */
.about-content {
    padding: 5rem 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.values-section {
    margin: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Corporate Values Section
   =================================== */
.values-corporate {
    max-width: 1000px;
    margin: 0 auto;
}

.value-item-corporate {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e8e8e8;
    transition: var(--transition);
    position: relative;
}

.value-item-corporate:last-child {
    border-bottom: none;
}

.value-item-corporate::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.value-item-corporate:hover::before {
    opacity: 1;
}

.value-item-corporate:hover {
    padding-left: 1rem;
    background: linear-gradient(to right, rgba(216, 162, 72, 0.02), transparent);
}

.value-icon-corporate {
    flex-shrink: 0;
}

.value-icon-wrapper-corporate {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(216, 162, 72, 0.08), rgba(14, 26, 38, 0.05));
    border: 2px solid rgba(216, 162, 72, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(14, 26, 38, 0.08);
}

.value-icon-wrapper-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.value-item-corporate:hover .value-icon-wrapper-corporate::before {
    opacity: 0.1;
}

.value-item-corporate:hover .value-icon-wrapper-corporate {
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(216, 162, 72, 0.2);
    background: linear-gradient(135deg, rgba(216, 162, 72, 0.12), rgba(14, 26, 38, 0.08));
}

.value-icon-text {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* ===================================
   Professional Value Icons
   =================================== */
.icon-target,
.icon-shield,
.icon-star,
.icon-handshake {
    position: relative;
}

/* Target Icon */
.icon-target-inner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.icon-target-inner::before,
.icon-target-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}

.icon-target-inner::before {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

.icon-target-inner::after {
    width: 20px;
    height: 20px;
    border-width: 2px;
    background: var(--primary-color);
}

/* Shield Icon */
.icon-shield-inner {
    width: 35px;
    height: 40px;
    position: relative;
    margin: 0 auto;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%, 0% 0%);
    border-radius: 4px 4px 0 0;
}

.icon-shield-inner::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: var(--white);
    border-radius: 1px;
}

.icon-shield-inner::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

/* Star Icon */
.icon-star-inner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Handshake Icon */
.icon-handshake-inner {
    width: 45px;
    height: 30px;
    position: relative;
    margin: 0 auto;
}

.icon-handshake-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 0 8px 8px 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.icon-handshake-inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 8px 0 0 8px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 80%);
}

.value-content-corporate {
    flex: 1;
}

.value-content-corporate h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.value-content-corporate h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.value-content-corporate p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

.mission-card,
.vision-card {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    background: var(--gradient-2);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   About Page Additional Sections
   =================================== */
.info-section,
.why-choose-section,
.experience-section,
.future-vision-section {
    padding: 4rem 0;
    margin: 3rem 0;
}

.info-section {
    background: var(--light-color);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.why-choose-section {
    background: linear-gradient(135deg, rgba(216, 162, 72, 0.05), rgba(14, 26, 38, 0.02));
    border-radius: 20px;
    padding: 4rem 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.experience-section {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-sm);
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-item {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.experience-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.experience-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.future-vision-section {
    background: var(--gradient-2);
    color: var(--white);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-top: 4rem;
}

.future-vision-section .section-header h2 {
    color: var(--white);
}

.future-vision-section .section-title::after {
    background: var(--primary-color);
}

.future-vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.future-vision-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.conclusion-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.conclusion-box p {
    color: var(--white);
    line-height: 1.9;
    font-size: 1.1rem;
    margin: 0;
}

.conclusion-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Vehicles Page
   =================================== */
.vehicles-section {
    padding: 5rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.vehicles-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    aspect-ratio: 4/3;
}

.vehicle-image-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vehicle-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-image-item:hover .vehicle-gallery-image {
    transform: scale(1.05);
}

.vehicle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-upload-area {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-input {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    padding: 2rem;
}

.upload-label:hover {
    transform: scale(1.1);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.upload-text {
    font-size: 1rem;
    font-weight: 600;
}

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

.vehicle-info {
    padding: 2rem;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.vehicle-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.add-vehicle-section {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-form {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 3rem 0;
    background: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-address {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.map-address p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.map-address strong {
    color: var(--secondary-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    margin-top: 2rem;
}

.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(216, 162, 72, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: var(--gradient-2);
    padding: 5rem 0 3rem;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   Blog Section
   =================================== */
.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.8;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(216, 162, 72, 0.05);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

/* ===================================
   WhatsApp Button
   =================================== */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

/* ===================================
   Live Chat Widget
   =================================== */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    color: var(--white);
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(216, 162, 72, 0.5);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--gradient-2);
    color: var(--white);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.bot {
    background: var(--light-color);
    align-self: flex-start;
}

.chat-message.user {
    background: var(--gradient-1);
    color: var(--white);
    align-self: flex-end;
}

.chat-message p {
    margin: 0;
    line-height: 1.6;
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid #e8e8e8;
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.chat-input-area button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

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

    .about-section,
    .mission-vision,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .info-section,
    .why-choose-section,
    .experience-section,
    .future-vision-section {
        padding: 3rem 2rem;
    }

    .features-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .experience-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicles-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-corporate {
        grid-template-columns: 1fr;
    }

    .service-item-corporate {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 2.5rem 2rem;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-item-corporate {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .feature-number {
        font-size: 2.5rem;
        min-width: auto;
        text-align: left;
    }

    .feature-content-corporate h3 {
        font-size: 1.5rem;
    }

    .feature-item-corporate:hover {
        padding-left: 0;
    }

    .service-item-corporate {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .service-icon-wrapper {
        margin: 0 auto;
    }

    .service-content-corporate h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .value-item-corporate {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        text-align: center;
    }

    .value-icon-wrapper-corporate {
        margin: 0 auto;
    }

    .value-content-corporate h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .value-item-corporate:hover {
        padding-left: 0;
    }

    .logo-image {
        height: 50px;
    }

    .footer-logo-image {
        height: 45px;
    }

    /* Blog & FAQ Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* WhatsApp & Chat Widget Responsive */
    .whatsapp-button {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .live-chat-widget {
        bottom: 20px;
        left: 20px;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        max-width: 350px;
        height: 450px;
        bottom: 85px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    /* About Page Additional Sections Responsive */
    .info-section,
    .why-choose-section,
    .experience-section,
    .future-vision-section {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
        border-radius: 15px;
    }

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

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-box {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .feature-box h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .feature-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .advantage-item {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .advantage-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .advantage-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .advantage-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .experience-item {
        padding: 1.75rem;
        border-radius: 12px;
    }

    .experience-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .experience-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .experience-content p,
    .info-content p {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 0.5rem;
    }

    .conclusion-box {
        padding: 1.75rem;
        border-radius: 12px;
        margin-top: 1.5rem;
    }

    .conclusion-box p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-content {
        padding: 3rem 0;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }

    .about-image {
        height: 300px;
        border-radius: 15px;
        max-width: 100%;
        overflow: hidden;
    }

    .about-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
        border-radius: 15px;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .values-section {
        margin: 3rem 0;
    }

    .values-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .value-content-corporate h3 {
        font-size: 1.4rem;
    }

    .value-content-corporate p {
        font-size: 0.95rem;
    }

    .future-vision-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .container {
        padding: 0 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Touch-friendly improvements */
    .nav-menu a {
        padding: 1rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        min-height: 44px;
        padding: 0.875rem 1.75rem;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent text size adjustment on orientation change */
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Text overflow handling */
    p, h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Image and video optimization */
    img, video {
        max-width: 100%;
        height: auto;
    }

    /* Footer mobile optimization */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 12px;
    }

    .info-section,
    .why-choose-section,
    .experience-section,
    .future-vision-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

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

    .feature-box,
    .advantage-item,
    .experience-item {
        padding: 1.5rem;
    }

    .feature-box h3,
    .advantage-item h3,
    .experience-item h3 {
        font-size: 1.2rem;
    }

    .feature-box p,
    .advantage-item p,
    .experience-item p {
        font-size: 0.9rem;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.5rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.95rem;
    }

    .conclusion-box {
        padding: 1.5rem;
    }

    .conclusion-box p {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .value-content-corporate h3 {
        font-size: 1.3rem;
    }

    .value-content-corporate p {
        font-size: 0.9rem;
    }

    .experience-content p,
    .info-content p,
    .future-vision-content p {
        font-size: 0.95rem;
        padding: 0;
    }

    .about-content {
        padding: 2rem 0;
    }

    .page-header {
        padding: 3rem 0;
    }

    /* Touch-friendly improvements */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer mobile optimization */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    /* Text overflow handling for small screens */
    .section-title {
        word-break: break-word;
    }
}

