:root {
    --yellow: #ffcf2a;
    --yellow-dark: #e6b800;
    --grey-01: #666767;
    --grey-02: #989898;
    --grey-light: #f5f5f5;
    --dark: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-01);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 207, 42, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

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

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

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

.btn-dark:hover {
    background: var(--grey-01);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 207, 42, 0.15);
    color: var(--grey-01);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title span {
    color: var(--yellow-dark);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--grey-02);
    font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 35px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--grey-01);
}

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

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

.nav-cta {
    padding: 12px 24px;
    background: var(--yellow);
    color: var(--dark) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
    background: var(--dark);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .lang-current {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--grey-01);
}

.lang-current:hover {
    background: rgba(255, 207, 42, 0.2);
    border-color: var(--yellow);
}

.lang-current svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.lang-switcher:hover .lang-current svg {
    transform: rotate(180deg);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--grey-01);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid var(--grey-light);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--grey-light);
    color: var(--dark);
}

.lang-option.active {
    background: rgba(255, 207, 42, 0.15);
    color: var(--dark);
}

.lang-option .lang-flag {
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 207, 42, 0.2);
    border: 1px solid rgba(255, 207, 42, 0.3);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--yellow);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--yellow);
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    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);
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.hero-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Geometric Pattern */
.hero-pattern {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
    z-index: 1;
}

.hero-pattern svg {
    width: 100%;
    height: 100%;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-img-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.about-badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
}

.about-content {
    padding-left: 20px;
}

.about-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 207, 42, 0.15);
    color: var(--grey-01);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-title {
    margin-bottom: 24px;
}

.about-title span {
    color: var(--yellow-dark);
}

.about-text {
    color: var(--grey-02);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 207, 42, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow-dark);
}

.about-feature span {
    font-weight: 600;
    color: var(--dark);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--grey-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--yellow);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.service-icon svg {
    width: 48px;
    height: 48px;
    color: var(--dark);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-desc {
    color: var(--grey-02);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--yellow-dark);
}

.service-link:hover svg {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--grey-light);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(255, 207, 42, 0.2);
}

/* ===== PRODUCTS CAROUSEL ===== */
.products {
    background: var(--white);
    overflow: hidden;
}

.products-slider {
    margin: 0 -15px;
    padding: 20px 15px 60px;
}

.products-slider .swiper-wrapper {
    align-items: stretch;
}

.products-slider .swiper-slide {
    height: auto;
}

/* Products Page Grid */
.products-page {
    background: var(--grey-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--grey-light);
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-content p {
    font-size: 14px;
    color: var(--grey-02);
    margin-bottom: 15px;
    flex: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.product-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.product-card:hover .product-link {
    color: var(--dark);
}

.product-card:hover .product-link svg {
    transform: translateX(5px);
}

.product-brand {
    font-size: 12px;
    color: var(--grey-02);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.4;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-feature {
    padding: 4px 10px;
    background: var(--grey-light);
    font-size: 11px;
    color: var(--grey-01);
    border-radius: 4px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--grey-light);
    margin-top: auto;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.product-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    color: var(--dark);
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: rotate(45deg);
}

.product-btn svg {
    width: 20px;
    height: 20px;
}

.products-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.products-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--grey-02);
    opacity: 0.3;
    transition: var(--transition);
}

.products-pagination .swiper-pagination-bullet-active {
    background: var(--yellow);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transition: var(--transition);
    z-index: -1;
}

.btn-view-all:hover {
    border-color: var(--yellow);
    color: var(--dark);
}

.btn-view-all:hover::before {
    left: 0;
}

.btn-view-all svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-view-all:hover svg {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 207, 42, 0.1) 0%, transparent 100%);
}

/* Isometric Pattern from Brandbook */
.isometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.isometric-pattern svg {
    width: 100%;
    height: 100%;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us .section-tag {
    background: rgba(255, 207, 42, 0.2);
    color: var(--yellow);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 207, 42, 0.1);
    border-color: var(--yellow);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.why-icon svg {
    width: 36px;
    height: 36px;
    color: var(--dark);
}

.why-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ===== BRANDS/PARTNERS ===== */
.brands {
    background: var(--grey-light);
    padding: 60px 0;
}

.brands-title {
    text-align: center;
    font-size: 14px;
    color: var(--grey-02);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.brands-slider {
    overflow: hidden;
}

.brand-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Projects Page */
.projects-page {
    background: var(--grey-light);
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-item {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-item-image {
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius);
}

.project-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.project-item:hover .project-item-image img {
    transform: scale(1.1);
}

.project-item-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.project-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.project-item-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.3;
}

.project-item-content p {
    font-size: 13px;
    color: var(--grey-02);
    margin-bottom: 12px;
    line-height: 1.5;
}

.project-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-item-tags span {
    padding: 3px 8px;
    background: var(--grey-light);
    color: var(--grey-01);
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
}

@media (max-width: 1200px) {
    .projects-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-item {
        flex-direction: column;
    }

    .project-item-image {
        width: 100%;
        height: 200px;
    }
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.project-category {
    font-size: 12px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

/* Outline Pattern for CTA */
.outline-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.outline-pattern svg {
    width: 100%;
    height: 100%;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--grey-01);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 207, 42, 0.15);
    color: var(--grey-01);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-title {
    margin-bottom: 20px;
}

.contact-title span {
    color: var(--yellow-dark);
}

.contact-text {
    color: var(--grey-02);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-item-content p {
    color: var(--grey-02);
    margin: 0;
}

.contact-item-content a {
    color: var(--grey-02);
}

.contact-item-content a:hover {
    color: var(--yellow-dark);
}

.contact-form-wrap {
    background: var(--grey-light);
    padding: 50px;
    border-radius: var(--radius);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    background: var(--grey-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-header p {
    color: var(--grey-02);
    font-size: 14px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark);
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-info-text p {
    font-size: 14px;
    color: var(--grey-01);
    margin: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--grey-01);
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--yellow-dark);
}

.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    background: var(--grey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--yellow);
}

.contact-social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--grey-01);
}

.contact-social-links a:hover svg {
    fill: var(--dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: var(--yellow);
    color: var(--dark);
    transition: all 0.4s ease;
}

.contact-form button.btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 207, 42, 0.4);
}

.contact-form button.btn svg {
    width: 18px;
    height: 18px;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--grey-02);
    font-size: 14px;
}

.contact-map {
    width: 100%;
    height: 450px;
    background: var(--grey-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-img {
    height: 35px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--dark);
}

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

.footer-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-contact-item a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--yellow);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 207, 42, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark);
    z-index: 1001;
    padding: 100px 40px 40px;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--yellow);
    color: var(--dark);
}

.mobile-menu-links {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-menu-links li {
    margin-bottom: 20px;
}

.mobile-menu-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-menu-links a:hover {
    color: var(--yellow);
    padding-left: 10px;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-title {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mobile-lang-options {
    display: flex;
    gap: 10px;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-lang-option:hover,
.mobile-lang-option.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.mobile-lang-option .lang-flag {
    font-size: 18px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .about-grid {
        gap: 60px;
    }

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

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

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

@media (max-width: 992px) {
    .nav-links,
    .lang-switcher {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-float {
        right: 20px;
        bottom: -20px;
    }

    .about-badge {
        left: 20px;
        top: -20px;
    }

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

    .contact-info {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .stats-bar {
        margin-top: -60px;
    }

    .stats-bar .container {
        gap: 20px;
    }

    .stat-item {
        padding: 15px;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-nav {
        display: none;
    }

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

    .project-card {
        height: 300px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

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

    .stats-bar .container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .about-img-float {
        display: none;
    }

    .service-card {
        padding: 30px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header .section-tag {
    background: var(--yellow);
    color: var(--dark);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-header h1 span {
    color: var(--yellow);
}

.page-header p {
    color: var(--grey-02);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.3;
}

/* About Intro */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-intro-content p {
    color: var(--grey-01);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.about-intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--grey-light);
    border-radius: var(--radius-sm);
}

.about-intro-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--yellow-dark);
}

.about-intro-feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-intro-feature span {
    font-weight: 600;
    color: var(--dark);
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-intro-experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--yellow);
    padding: 30px 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Background Grey */
.bg-grey {
    background: var(--grey-light);
}

.bg-dark {
    background: var(--dark);
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 207, 42, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: var(--yellow-dark);
}

.mission-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--grey-01);
    line-height: 1.7;
}

/* About Services */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-service-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.about-service-icon {
    width: 60px;
    height: 60px;
    background: var(--grey-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-service-card:hover .about-service-icon {
    background: var(--yellow);
}

.about-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.about-service-card h4 {
    margin-bottom: 12px;
}

.about-service-card p {
    color: var(--grey-01);
    font-size: 14px;
    line-height: 1.6;
}

/* About Stats */
.about-stats {
    background: var(--yellow);
    padding: 80px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.about-stat-item {
    padding: 20px;
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 20px;
}

.why-choose-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.why-choose-card p {
    color: var(--grey-02);
    line-height: 1.7;
}

/* Partners */
.partners {
    background: var(--grey-light);
}

.partner-logo {
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: var(--yellow);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* About Page Responsive */
@media (max-width: 1200px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-experience {
        bottom: 20px;
        left: 20px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

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

/* ==================== SERVICES PAGE ==================== */

.services-page {
    padding: 80px 0 100px;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-page-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-page-card:hover {
    transform: translateX(10px);
    border-color: var(--yellow);
    box-shadow: var(--shadow-lg);
}

.service-page-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

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

.service-page-icon svg {
    width: 40px;
    height: 40px;
    color: var(--dark);
}

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

.service-page-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yellow-dark);
    background: rgba(255, 207, 42, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.service-page-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    transition: var(--transition);
}

.service-page-card:hover .service-page-content h3 {
    color: var(--yellow-dark);
}

.service-page-content p {
    font-size: 0.95rem;
    color: var(--grey-01);
    margin: 0;
}

.service-page-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-light);
    border-radius: 50%;
    transition: var(--transition);
}

.service-page-card:hover .service-page-arrow {
    background: var(--yellow);
}

.service-page-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--grey-01);
    transition: var(--transition);
}

.service-page-card:hover .service-page-arrow svg {
    color: var(--dark);
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--yellow);
}

.cta-content p {
    color: var(--grey-02);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .service-page-card {
        padding: 25px 30px;
        gap: 25px;
    }

    .service-page-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .service-page-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-page-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .service-page-card {
        padding: 20px 25px;
        gap: 20px;
    }

    .service-page-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .service-page-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-page-content h3 {
        font-size: 1.1rem;
    }

    .service-page-content p {
        font-size: 0.85rem;
    }

    .service-page-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .service-page-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .service-page-card {
        flex-wrap: wrap;
        padding: 20px;
    }

    .service-page-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .service-page-icon svg {
        width: 25px;
        height: 25px;
    }

    .service-page-content {
        flex: 1 1 calc(100% - 80px);
    }

    .service-page-arrow {
        display: none;
    }
}

/* ==================== SINGLE SERVICE PAGE ==================== */

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--yellow);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.breadcrumb-current {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
}

/* Service Content */
.service-content {
    padding: 60px 0;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.service-main {
    background: var(--white);
    padding: 60px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-main-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--grey-light);
}

.service-image {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-text h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.service-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--grey-01);
    margin-bottom: 12px;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.service-details p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--grey-01);
    margin-bottom: 12px;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.service-details strong {
    color: var(--dark);
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-info-card {
    background: var(--dark);
    padding: 30px;
    border-radius: var(--radius);
}

.service-info-card h4 {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-info-card li {
    position: relative;
    padding-left: 25px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.service-info-card li:last-child {
    margin-bottom: 0;
}

.service-info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
}

.service-contact-card {
    background: var(--yellow);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.service-contact-card h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-phone:hover {
    opacity: 0.8;
}

.service-phone svg {
    width: 22px;
    height: 22px;
}

.service-hours {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.7;
}

/* Service Types */
.service-types {
    background: var(--grey-light);
    padding: 80px 0;
}

.service-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-type-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-type-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--yellow);
    box-shadow: var(--shadow-lg);
}

.service-type-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-type-icon svg {
    width: 32px;
    height: 32px;
    color: var(--dark);
}

.service-type-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-type-card > p {
    font-size: 0.9rem;
    color: var(--grey-01);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-type-features li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--grey-01);
    margin-bottom: 8px;
}

.service-type-features li:last-child {
    margin-bottom: 0;
}

.service-type-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

/* Service Process */
.service-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--yellow);
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--yellow);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--yellow);
    color: var(--dark);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--grey-01);
    line-height: 1.6;
}

/* Other Services */
.other-services {
    background: var(--dark);
    padding: 80px 0;
}

.other-services .section-tag {
    background: var(--yellow);
    color: var(--dark);
}

.other-services .section-title {
    color: var(--white);
}

.other-services .section-title span {
    color: var(--yellow);
}

.other-services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.other-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.other-service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.other-service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    transition: var(--transition);
}

.other-service-card:hover .other-service-icon {
    transform: scale(1.1);
}

.other-service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--dark);
}

.other-service-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Single Service Responsive */
@media (max-width: 1200px) {
    .service-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        flex-direction: row;
    }

    .service-info-card,
    .service-contact-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .service-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        max-width: 300px;
    }

    .service-sidebar {
        flex-direction: column;
    }

    .service-main {
        padding: 25px;
    }

    .service-text p,
    .service-details p {
        font-size: 0.9rem;
    }

    .service-types-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .other-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .other-service-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}
