/* ========================================
   TSY Energy - Main Stylesheet
   Color Scheme:
   - Primary: #6B2E73 (Purple)
   - Secondary: #316397 (Blue)
   - Dark: #081225 (Dark Navy)
   - Text: #14141C (Dark Gray)
======================================== */

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary-color: #6B2E73;
    --primary-light: #8a4191;
    --primary-dark: #521f58;
    --secondary-color: #316397;
    --secondary-light: #4a7eb3;
    --secondary-dark: #234a72;
    --dark-color: #081225;
    --text-color: #14141C;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
    color: var(--primary-dark);
}

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

/* ========================================
   Buttons
======================================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

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

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

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* ========================================
   Section Styles
======================================== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* ========================================
   Header / Navigation - Modern Transparent
======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
}

.main-header.scrolled .navbar {
    padding: 12px 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    height: 50px;
}

.logo-wrapper .logo {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-wrapper .logo-light {
    display: block;
}

.logo-wrapper .logo-dark {
    display: none;
}

.main-header.scrolled .logo-wrapper .logo-light {
    display: none;
}

.main-header.scrolled .logo-wrapper .logo-dark {
    display: block;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
}

.main-header.scrolled .navbar-nav .nav-link {
    color: var(--text-color);
}

.main-header.scrolled .navbar-nav .nav-link:hover,
.main-header.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px 0;
    min-width: 240px;
    margin-top: 0;
    padding-top: 25px;
    background: transparent;
    animation: dropdownFade 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 25px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(107, 46, 115, 0.1), transparent);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 30px;
}

/* Contact Button in Nav */
.nav-cta {
    margin-left: 15px;
}

.nav-cta .btn {
    padding: 12px 28px;
    font-size: 13px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(107, 46, 115, 0.4);
    transition: all 0.3s ease;
}

.nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 46, 115, 0.5);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar-toggler span {
    background: var(--text-color);
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* ========================================
   Hero Slider - Full Screen with Transparent Header
======================================== */
.hero-slider {
    position: relative;
    margin-top: -90px; /* Pull up behind transparent header */
}

.hero-slider .swiper-slide {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 18, 37, 0.85) 0%, rgba(49, 99, 151, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    max-width: 750px;
}

.slide-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
}

.slide-content .btn {
    padding: 16px 40px;
    font-size: 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(107, 46, 115, 0.4);
}

.slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 46, 115, 0.5);
}

.hero-slider .swiper-pagination {
    bottom: 40px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary-color);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
}

/* ========================================
   Page Hero - For inner pages
======================================== */
.page-hero {
    background-color: var(--dark-color);
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    position: relative;
    margin-top: -90px; /* Pull up behind transparent header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 18, 37, 0.9) 0%, rgba(49, 99, 151, 0.7) 100%);
}

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

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.page-hero .breadcrumb {
    justify-content: center;
    background: none;
    margin: 0;
    padding: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.page-hero .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Service Cards
======================================== */
.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    margin-left: 10px;
}

/* ========================================
   About Section
======================================== */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   Product Cards
======================================== */
.product-card,
.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.product-image,
.category-image {
    position: relative;
    overflow: hidden;
}

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

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

.product-content,
.category-content {
    padding: 25px;
}

.product-title,
.category-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   Project Cards
======================================== */
.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-image {
    position: relative;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 46, 115, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-content {
    padding: 20px;
    background: var(--white);
}

.project-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.project-client,
.project-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

/* ========================================
   Partners Section
======================================== */
.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

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

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
}

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

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ========================================
   Footer
======================================== */
.main-footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-logo {
    max-height: 60px;
}

.footer-brand {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-about {
    margin: 20px 0;
    line-height: 1.8;
}

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

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

.widget-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Back to Top
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ========================================
   Contact Section
======================================== */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 46, 115, 0.15);
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    margin: 0;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-section iframe,
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   Service Detail
======================================== */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.services-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-nav li {
    margin-bottom: 10px;
}

.services-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 5px;
    color: var(--text-color);
    transition: var(--transition);
}

.services-nav a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.services-nav li.active a,
.services-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.services-nav li.active a i,
.services-nav a:hover i {
    color: var(--white);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-widget h4 {
    color: var(--white);
}

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

/* ========================================
   Product Detail
======================================== */
.product-gallery .main-image {
    margin-bottom: 20px;
}

.product-gallery .main-image img {
    width: 100%;
    border-radius: 10px;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.thumb.active,
.thumb:hover {
    border-color: var(--primary-color);
}

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

.product-specifications {
    margin-top: 30px;
}

.product-documents {
    margin-top: 30px;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.document-list a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.document-list a i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.document-list .badge {
    background: var(--light-bg);
    color: var(--text-light);
    margin-left: 10px;
    font-size: 11px;
}

/* ========================================
   Core Values
======================================== */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.value-title {
    font-size: 1.25rem;
}

/* ========================================
   Office Cards
======================================== */
.office-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
}

.office-card.headquarters {
    border: 2px solid var(--primary-color);
}

.badge-hq {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

/* ========================================
   Page Content
======================================== */
.content-wrapper {
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-wrapper h2 {
    margin-top: 40px;
}

.content-wrapper img {
    border-radius: 10px;
    margin: 20px 0;
}

.page-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }

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

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

    .hero-slider .swiper-slide {
        height: 80vh;
        min-height: 550px;
    }

    .hero-slider {
        margin-top: -70px;
    }

    .page-hero {
        margin-top: -70px;
        padding: 150px 0 80px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    /* Mobile Navigation */
    .main-header {
        background: rgba(8, 18, 37, 0.95);
        backdrop-filter: blur(20px);
    }

    .main-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar-collapse {
        background: var(--white);
        padding: 25px;
        margin-top: 20px;
        border-radius: 15px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        color: var(--text-color);
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    .logo-wrapper .logo-light {
        display: block;
    }

    .logo-wrapper .logo-dark {
        display: none;
    }

    .main-header.scrolled .logo-wrapper .logo-light {
        display: none;
    }

    .main-header.scrolled .logo-wrapper .logo-dark {
        display: block;
    }
}

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

    .slide-title {
        font-size: 2.2rem;
    }

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

    .slide-content {
        padding-top: 80px;
    }

    .hero-slider .swiper-slide {
        height: 100vh;
        min-height: 500px;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }

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

    .cta-title {
        font-size: 1.75rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

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