/* ==========================================
   KINETIC CONSTRUCTION - MAIN STYLESHEET
   Colors: #17446E (Primary Blue), #EA771C (Orange), #FFFFFF (White)
========================================== */

/* ==========================================
   ROOT VARIABLES
========================================== */
:root {
    --primary-blue: #17446E;
    --primary-orange: #EA771C;
    --white: #FFFFFF;
    --light-bg: #f8f9fa;
    --dark-bg: #0d2840;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #17446E 0%, #1a5a8a 100%);
    --gradient-orange: linear-gradient(135deg, #EA771C 0%, #ff9a44 100%);
    --shadow-soft: 0 10px 40px rgba(23, 68, 110, 0.1);
    --shadow-medium: 0 15px 50px rgba(23, 68, 110, 0.15);
    --shadow-strong: 0 20px 60px rgba(23, 68, 110, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   GENERAL STYLES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

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

/* ==========================================
   PRELOADER
========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-cube {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 2s infinite ease-in-out;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-orange);
    background: rgba(234, 119, 28, 0.1);
}

.cube-face.front { transform: translateZ(30px); }
.cube-face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* ==========================================
   BUTTONS
========================================== */
.btn-primary-custom {
    background: var(--gradient-orange);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 119, 28, 0.3);
}

.btn-primary-custom:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ==========================================
   SECTION STYLES
========================================== */
.section-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.section-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary-orange);
}

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

/* ==========================================
   NAVBAR
========================================== */
#mainNavbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

#mainNavbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
}

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

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

#mainNavbar.scrolled .logo-img {
    height: 65px;
    filter: none;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.brand-highlight {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-orange);
    letter-spacing: 4px;
}

#mainNavbar.scrolled .brand-text {
    color: var(--primary-blue);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px !important;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

#mainNavbar.scrolled .nav-link {
    color: var(--primary-blue) !important;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNavbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(23, 68, 110, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 15%, transparent 30%),
        linear-gradient(135deg, rgba(23, 68, 110, 0.9) 0%, rgba(23, 68, 110, 0.6) 100%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-orange);
    background: transparent;
    top: 30%;
    left: 5%;
    animation: rotate 15s linear infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    bottom: 10%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

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

.hero-title {
    font-size: 60px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
}

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

/* Hero 3D Element */
.hero-3d-element {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.cube-3d {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube3D 20s infinite linear;
}

.cube-3d .cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    color: var(--white);
    border: 2px solid rgba(234, 119, 28, 0.5);
    background: rgba(234, 119, 28, 0.1);
    backdrop-filter: blur(10px);
}

.cube-3d .cube-front { transform: translateZ(100px); }
.cube-3d .cube-back { transform: rotateY(180deg) translateZ(100px); }
.cube-3d .cube-right { transform: rotateY(90deg) translateZ(100px); }
.cube-3d .cube-left { transform: rotateY(-90deg) translateZ(100px); }
.cube-3d .cube-top { transform: rotateX(90deg) translateZ(100px); }
.cube-3d .cube-bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube3D {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

.scroll-indicator span {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

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

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-floating {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 5px solid var(--white);
}

.about-image-floating img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-medium);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.about-text {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: var(--light-bg);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
}

.feature-text h5 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   SERVICES SECTION
========================================== */
.services-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(23, 68, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 119, 28, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* 3D Service Cards */
.service-card-3d {
    -webkit-perspective: 1000px;
    perspective: 1000px;
    height: 400px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: transform 0.8s;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service-card-3d:hover .service-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.service-card-front {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.service-card-back {
    background: var(--gradient-primary);
    color: var(--white);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 1;
}

.service-card-back h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-card-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.service-card-back ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-back ul li i {
    color: var(--primary-orange);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-3d:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(23, 68, 110, 0.8));
}

.service-content {
    padding: 25px 20px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--white);
    margin: -55px auto 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.service-content h4 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   HIGHLIGHTS SECTION
========================================== */
.highlights-section {
    padding: 100px 0;
    background: var(--white);
}

.highlight-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.highlight-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.15);
}

.highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(23, 68, 110, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.highlight-content {
    color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-content {
    transform: translateY(0);
}

.highlight-content .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.highlight-content h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--white);
}

.btn-view {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-smooth);
}

.highlight-card:hover .btn-view {
    opacity: 1;
    transform: scale(1);
}

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

/* ==========================================
   EVENTS SECTION
========================================== */
.events-section {
    padding: 100px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.events-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(234, 119, 28, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin: 10px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

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

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(234, 119, 28, 0.3);
}

.event-date .day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Event card without image - add class or use when image is absent */
.event-card:not(:has(.event-image)) {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #1a5a8a 100%);
}

.event-card:not(:has(.event-image)) .event-content {
    padding-top: 100px;
    background: var(--white);
    border-radius: 15px;
    margin: 15px;
    margin-top: 70px;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-card:not(:has(.event-image)) .event-date {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Fallback for browsers without :has() support */
.event-card.no-image {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #1a5a8a 100%);
}

.event-card.no-image .event-content {
    padding-top: 100px;
    background: var(--white);
    border-radius: 15px;
    margin: 15px;
    margin-top: 70px;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.event-card.no-image .event-date {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    background: rgba(234, 119, 28, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.event-content h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.event-content p i {
    color: var(--primary-orange);
    margin-right: 8px;
}

/* ==========================================
   WHY US SECTION
========================================== */
.why-us-section {
    padding: 100px 0;
    background: var(--white);
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-strong);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--primary-blue);
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: rotateY(360deg);
}

.why-card h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
    overflow: hidden;
}

.testimonials-section .container {
    position: relative;
}

.testimonials-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding: 20px 0 40px;
}

.testimonials-carousel.owl-carousel .owl-item {
    display: flex;
}

.testimonials-carousel.owl-carousel {
    position: relative;
}

.testimonials-carousel.owl-carousel .owl-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
    transform: none;
}

.testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute !important;
    left: -25px !important;
    top: 45%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.testimonials-carousel.owl-carousel .owl-nav button.owl-next {
    position: absolute !important;
    right: -25px !important;
    top: 45%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.testimonials-carousel .owl-dots {
    margin-top: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    margin: 5px 15px;
    box-shadow: 0 5px 25px rgba(23, 68, 110, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(23, 68, 110, 0.12);
    border-color: var(--primary-orange);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 68, 110, 0.1);
}

.author-info h5 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.author-info h5::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    margin-right: 10px;
    vertical-align: middle;
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    padding-left: 40px;
}

/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-orange);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.cta-title .highlight {
    color: var(--primary-blue);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-orange);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: var(--transition-smooth);
}

.cta-section .btn-light:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==========================================
   CONTACT SECTION
========================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

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

.info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--primary-orange);
}

.info-content h5 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    height: 60px;
    padding-left: 20px;
    transition: var(--transition-smooth);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(234, 119, 28, 0.1);
}

.form-floating > label {
    padding-left: 20px;
}

.form-floating > textarea.form-control {
    height: auto;
}

/* ==========================================
   CLIENTS SECTION
========================================== */
.clients-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.client-logo {
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    box-shadow: var(--shadow-soft);
    transform: scale(1.05);
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    mix-blend-mode: multiply;
}

.client-logo:hover img {
    transform: scale(1.1);
}

/* ==========================================
   FOOTER
========================================== */
.footer-section {
    background: var(--dark-bg);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: auto;
    width: 200px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo .brand-text {
    font-size: 28px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-5px);
}

.footer-widget h5 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.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);
    font-size: 15px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

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

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary-orange);
    font-size: 16px;
    margin-top: 3px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

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

/* ==========================================
   FLOATING BUTTONS (Call & WhatsApp)
========================================== */
.call-float {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 5px 25px rgba(23, 68, 110, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
    animation: callPulse 2s infinite;
}

.call-float:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(23, 68, 110, 0.5);
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(23, 68, 110, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(23, 68, 110, 0.6), 0 0 0 10px rgba(23, 68, 110, 0.1);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile adjustments for floating buttons */
@media (max-width: 767px) {
    .call-float {
        bottom: 135px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .call-float {
        bottom: 125px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .whatsapp-float {
        bottom: 75px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ==========================================
   BACK TO TOP
========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(234, 119, 28, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

/* ==========================================
   OWL CAROUSEL CUSTOM
========================================== */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--white) !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    color: var(--primary-blue) !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    pointer-events: auto;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-orange) !important;
    color: var(--white) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(23, 68, 110, 0.2);
    border-radius: 50%;
    display: block;
    transition: var(--transition-smooth);
}

.owl-carousel .owl-dot.active span {
    background: var(--primary-orange);
    transform: scale(1.3);
}

.events-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
}

.events-carousel .owl-dot.active span {
    background: var(--primary-orange);
}

/* ==========================================
   PAGE HEADER
========================================== */
.page-header {
    padding: 180px 0 100px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

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

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.breadcrumb-nav a:hover {
    color: var(--primary-orange);
}

.breadcrumb-nav .separator {
    color: var(--primary-orange);
}

/* ==========================================
   PORTFOLIO PAGE
========================================== */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

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

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.portfolio-item-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(23, 68, 110, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-overlay .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.portfolio-item-overlay h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-item-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-page-section {
    padding: 100px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 50px;
}

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

/* ==========================================
   RESPONSIVE STYLES
========================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

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

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 30px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .about-features {
        text-align: left;
    }

    .about-image-floating {
        right: 0;
    }

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

    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-soft);
    }

    .navbar-collapse .nav-link {
        color: var(--primary-blue) !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }

    /* Testimonials arrows for tablet */
    .testimonials-carousel.owl-carousel .owl-nav button.owl-prev,
    .testimonials-carousel.owl-carousel .owl-nav button.owl-next {
        position: static !important;
    }

    .testimonials-carousel.owl-carousel .owl-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    /* Client logos */
    .client-logo {
        padding: 20px;
    }

    .client-logo img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-description {
        font-size: 15px;
    }

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

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 14px;
    }

    .service-card-3d {
        height: 350px;
    }

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

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

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        margin-left: 5px;
    }

    .owl-carousel .owl-nav button.owl-next {
        margin-right: 5px;
    }

    .owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }

    /* Footer Mobile */
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

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

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

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

    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }

    /* Why Us Cards */
    .why-card {
        padding: 30px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Highlight Cards */
    .highlight-image {
        height: 220px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px;
        margin: 5px 10px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .testimonials-carousel.owl-carousel .owl-nav button.owl-prev,
    .testimonials-carousel.owl-carousel .owl-nav button.owl-next {
        position: static !important;
        display: inline-block;
    }

    .testimonials-carousel.owl-carousel .owl-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    /* CTA Section */
    .cta-title {
        font-size: 24px;
    }

    /* Events Section */
    .event-card {
        min-height: 240px;
    }

    .event-date {
        padding: 10px 15px;
    }

    .event-date .day {
        font-size: 22px;
    }

    /* Contact Section */
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
        margin-bottom: 15px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-image-main img {
        height: 280px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    /* Navbar */
    .logo-img {
        height: 45px;
    }

    #mainNavbar.scrolled .logo-img {
        height: 40px;
    }

    #mainNavbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .btn-primary-custom.ms-lg-3 {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 24px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 24px;
    }

    /* Sections */
    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }

    .section-subtitle {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        display: block;
    }

    .section-title {
        font-size: 22px;
        text-align: center;
    }

    .about-image-floating {
        display: none;
    }

    /* Services - Mobile Fix */
    .service-card-3d {
        height: auto;
        min-height: auto;
        perspective: none;
    }

    .service-card-inner {
        transform-style: flat;
    }

    .service-card-3d:hover .service-card-inner {
        transform: none;
    }

    .service-card-front,
    .service-card-back {
        position: relative;
        height: auto;
    }

    .service-card-front {
        display: block;
    }

    .service-card-back {
        display: none;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: -40px auto 15px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-content h4 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 13px;
    }

    /* Forms */
    .contact-form-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .form-floating > .form-control,
    .form-floating > .form-select {
        height: 55px;
    }

    /* Footer */
    .footer-logo-img {
        width: 150px;
        margin: 0 auto 15px;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }

    /* Highlights */
    .highlight-card {
        margin-bottom: 20px;
    }

    .highlight-image {
        height: 200px;
    }

    /* Scroll indicator hide on mobile */
    .scroll-indicator {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 14px;
    }

    .service-card-3d {
        min-height: 300px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .event-content h4 {
        font-size: 16px;
    }

    .cta-title {
        font-size: 20px;
    }

    .footer-widget p {
        font-size: 13px;
    }

    .page-header h1 {
        font-size: 26px;
    }
}

/* ==========================================
   ANIMATION CLASSES
========================================== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   UTILITIES
========================================== */
.text-primary-blue {
    color: var(--primary-blue) !important;
}

.text-primary-orange {
    color: var(--primary-orange) !important;
}

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

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

/* Parallax effect for supported browsers */
@supports (background-attachment: fixed) {
    .hero-bg-image {
        background-attachment: fixed;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Selection color */
::selection {
    background: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--white);
}
