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

:root {
    --primary-dark: #253559;
    --primary-gold: #F6B129;
    --primary-blue: #4DA3FF;
    --text-dark: #272727;
    --text-gray: #666666;
    --text-light: #ffffff;
    --bg-light: #f4f5f8;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --section-pad: 80px 0;
    --section-pad-sm: 60px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rasa', serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

h1 { font-size: 52px; }
h2 { font-size: 42px; }
h3 { font-size: 32px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4, .col-lg-6, .col-lg-3, .col-md-6, .col-sm-12 {
    padding: 0 15px;
    position: relative;
    width: 100%;
}

.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }

.text-center { text-align: center; }
.text-white { color: #fff; }

/* ========== Section Title ========== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .small-title {
    display: block;
    color: var(--primary-gold);
    font-family: 'Rasa', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title .title-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
}

.section-title .separator {
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px auto 0;
    display: block;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Hind', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* ========== Top Bar ========== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar .top-info {
    display: flex;
    gap: 30px;
}

.top-bar .top-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .top-info li i {
    color: var(--primary-gold);
}

.top-bar .top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar .social-links {
    display: flex;
    gap: 5px;
}

.top-bar .social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
}

.top-bar .social-links a:hover {
    color: var(--primary-gold);
}

.top-bar .btn-appointment {
    background: var(--primary-gold);
    color: #fff;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.top-bar .btn-appointment:hover {
    background: #e0a021;
    color: #fff;
}

/* ========== Header / Navigation ========== */
.header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo img {
    height: 60px;
}

.logo .regions {
    font-size: 12px;
    color: var(--primary-dark);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.logo .regions span {
    color: var(--primary-gold);
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--primary-gold);
}

.main-nav > ul > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 6px;
    font-size: 13px;
    font-weight: 300;
}

.main-nav > ul > li > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-gold);
}

.main-nav > ul > li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav > ul > li > ul.sub-menu li a {
    display: block;
    padding: 8px 25px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.main-nav > ul > li > ul.sub-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-gold);
    padding-left: 30px;
}

.header .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.header .nav-right .search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 2px;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-right .search-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

.header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.header .mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ========== Hero Slider ========== */
.main-slider {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.4s ease, visibility 0.9s ease;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slider-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 53, 89, 0.55);
}

.slider-slide.active .slide-overline {
    animation: slideInUp 0.9s ease both 0.2s;
}
.slider-slide.active h1 {
    animation: slideInUp 0.9s ease both 0.35s;
}
.slider-slide.active .slide-desc {
    animation: slideInUp 0.9s ease both 0.5s;
}
.slider-slide.active .slide-buttons {
    animation: slideInUp 0.9s ease both 0.65s;
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slider-slide .slide-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.slider-slide .slide-overline {
    color: var(--primary-gold, #F6B129);
    font-size: 16px;
    font-weight: 500;
    font-family: 'Rasa', serif;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-slide h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.slider-slide .slide-desc {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
}

.slider-slide .slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    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.3);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 5;
}

.slider-nav:hover {
    background: var(--primary-gold, #F6B129);
    border-color: var(--primary-gold, #F6B129);
}

.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 12px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-gold, #F6B129);
    width: 30px;
}

/* ========== Color Picker (Reference Sticky Widget) ========== */
:root {
    --cz-primary-dark: #253559;
    --cz-primary-gold: #F6B129;
}
.color-switcher {
    position: fixed;
    left: 0;
    top: 40%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
}
.color-switcher .cs-toggle,
.color-switcher.open,
.color-switcher.open .cs-panel,
.color-switcher .cs-panel * {
    pointer-events: auto;
}
.color-switcher .cs-toggle {
    width: 46px;
    height: 46px;
    background: #F6B129;
    color: #253559;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.15);
    transition: background 0.3s;
    flex-shrink: 0;
}
.color-switcher .cs-toggle:hover {
    background: #e5a11a;
}
.color-switcher .cs-toggle i {
    animation: spinGear 8s linear infinite;
}
@keyframes spinGear {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.color-switcher .cs-panel {
    width: 240px;
    background: #fff;
    border-radius: 0 0 8px 0;
    padding: 18px 18px 16px;
    box-shadow: 4px 6px 25px rgba(0,0,0,0.15);
    transform: translateX(calc(-100% - 46px));
    transition: transform 0.35s ease;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.color-switcher.open .cs-panel {
    transform: translateX(0);
}
.color-switcher .cs-panel h4 {
    font-family: 'Rasa', serif;
    font-size: 17px;
    color: #253559;
    margin-bottom: 10px;
    font-weight: 600;
}
.color-switcher .cs-panel .cs-section {
    margin-bottom: 14px;
}
.color-switcher .cs-panel .cs-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    display: block;
}
.color-switcher .cs-swatches {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.color-switcher .cs-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.color-switcher .cs-swatch:hover {
    transform: scale(1.12);
}
.color-switcher .cs-swatch.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px #253559;
}
.color-switcher .cs-swatch.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.color-switcher .cs-reset {
    width: 100%;
    padding: 9px 12px;
    background: #253559;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.25s;
}
.color-switcher .cs-reset:hover {
    background: #F6B129;
    color: #253559;
}

/* ========== Why Section (Feature Section) ========== */
.feature-section {
    padding: var(--section-pad);
    background: var(--bg-white);
}

.feature-card {
    border: 1px solid var(--border-light);
    padding: 0;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 30px;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

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

.feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card .feature-icon {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 3px;
}

.feature-card .feature-content {
    padding: 40px 30px 30px;
}

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

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ========== Services Section ========== */
.service-section {
    padding: var(--section-pad);
    background: var(--bg-light);
    position: relative;
}

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

.service-section .service-bg-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 53, 89, 0.85);
}

.service-section .service-intro {
    position: relative;
    padding: 80px 50px 80px 0;
    color: #fff;
}

.service-section .service-intro h2 {
    color: #fff;
}

.service-section .service-intro h2 span {
    color: var(--primary-gold);
}

.service-section .service-intro .separator {
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px 0;
}

.service-section .service-intro p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-grid {
    padding: 40px 0;
}

.service-card {
    background: #fff;
    padding: 35px 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--border-light);
    transform: translateY(-3px);
}

.service-card .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-gold);
    border-radius: 3px;
}

.service-card .service-icon::after {
    content: '';
    display: block;
    width: 35px;
    height: 1px;
    background: var(--border-light);
    margin-top: 15px;
}

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

.service-card p {
    font-size: 14px;
    margin: 0 0 15px 0;
}

.service-card .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .read-more:hover {
    color: var(--primary-gold);
}

.service-card .read-more::after {
    content: '\f105';
    font-family: 'FontAwesome';
    transition: transform 0.3s ease;
}

.service-card .read-more:hover::after {
    transform: translateX(5px);
}

/* ========== Testimonials Section ========== */
.testimonial-section {
    padding: var(--section-pad);
    background: #fff;
}

.testimonial-slider {
    position: relative;
    padding: 0 20px;
}

.testimonial-card {
    border: 1px solid var(--border-light);
    padding: 40px 35px;
    margin: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card .quote-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 20px;
}

.testimonial-card .quote-icon::before {
    content: '\f10d';
    font-family: 'FontAwesome';
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-card .author-info h5 {
    margin: 0 0 3px 0;
    font-size: 18px;
}

.testimonial-card .author-info .position {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 500;
    font-style: italic;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 3px;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--primary-gold);
    width: 25px;
}

/* ========== Counter Section ========== */
.fact-counter {
    padding: 80px 0;
    background: var(--primary-dark);
    position: relative;
    background-size: cover;
    background-position: center;
}

.fact-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 53, 89, 0.92);
}

.fact-counter .container {
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 30px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    margin: 15px 0;
}

.counter-item .counter-num {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-gold);
    font-family: 'Rasa', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-item .counter-sep {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 10px auto 15px;
}

.counter-item .counter-title {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ========== Team Section ========== */
.our-team {
    padding: var(--section-pad);
    background: #fff;
}

.team-carousel {
    position: relative;
    padding: 0 10px;
}

.team-member {
    margin: 0 15px;
}

.team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team-member .member-img img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.team-member:hover .member-img img {
    transform: scale(1.05);
}

.team-member .member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(37,53,89,0.95), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-member .member-socials {
    display: flex;
    gap: 8px;
}

.team-member .member-socials a {
    width: 36px;
    height: 36px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 14px;
}

.team-member .member-socials a:hover {
    background: #fff;
    color: var(--primary-gold);
}

.team-member .member-info {
    padding: 25px 30px;
    background: var(--bg-light);
}

.team-member .member-info h5 {
    margin: 0 0 3px 0;
    font-size: 18px;
}

.team-member .member-info .position {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.team-member .member-info p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-member .member-contact {
    font-size: 13px;
    color: var(--text-dark);
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.team-member .member-contact p {
    margin: 0 0 5px 0;
}

.team-member .member-contact strong {
    color: var(--text-dark);
    margin-right: 5px;
}

.team-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
    border: none;
    transition: all 0.3s ease;
}

.team-nav:hover {
    background: var(--primary-dark);
}

.team-nav.prev { left: -10px; }
.team-nav.next { right: -10px; }

.team-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.team-thumbs .thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.team-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--primary-gold);
}

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

/* ========== Call Back Section ========== */
.callback-section {
    position: relative;
    background: var(--primary-dark);
}

.callback-section .callback-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.callback-section .container {
    position: relative;
    z-index: 2;
}

.callback-form-wrap {
    padding: 80px 50px 80px 0;
    max-width: 750px;
}

.callback-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.callback-section h2 span {
    color: var(--primary-gold);
}

.callback-section .separator {
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px 0 25px;
}

.callback-section .section-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    font-size: 15px;
}

.callback-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.callback-form .form-group {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.callback-form .form-group input,
.callback-form .form-group select {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 14px;
    font-family: 'Hind', sans-serif;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.callback-form .form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.callback-form .form-group input:focus,
.callback-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(246, 177, 41, 0.1);
}

.callback-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.callback-form .form-group select option {
    background: var(--primary-dark);
    color: #fff;
}

/* ========== Gallery Section ========== */
.gallery-section {
    padding: var(--section-pad);
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 53, 89, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

.gallery-item .gallery-overlay .zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay .zoom-icon {
    transform: translateY(0);
}

.gallery-item .gallery-overlay h5 {
    color: #fff;
    font-size: 16px;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* ========== Partners / Clients Section ========== */
.partners-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.partners-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 30px;
    padding: 0 20px;
}

.partner-item {
    flex: 0 0 auto;
    padding: 20px 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 100px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.partner-item img {
    max-height: 50px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

/* ========== News / Blog Section ========== */
.news-section {
    padding: var(--section-pad);
    background: #fff;
}

.news-card {
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-card .news-img {
    position: relative;
    overflow: hidden;
}

.news-card .news-img img {
    width: 100%;
    transition: all 0.4s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-card .news-date {
    position: absolute;
    left: 25px;
    bottom: -20px;
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-family: 'Rasa', serif;
    z-index: 2;
}

.news-card .news-date .day {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.news-card .news-date .month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card .news-content {
    padding: 35px 25px 30px;
}

.news-card .news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.news-card .news-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card .news-meta li i {
    color: var(--primary-gold);
}

.news-card .news-meta .meta-author {
    color: var(--primary-gold);
    font-weight: 600;
}

.news-card h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-card h4 a:hover {
    color: var(--primary-gold);
}

.news-card .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    width: 100%;
}

.news-card .read-more:hover {
    color: var(--primary-gold);
}

.news-card .read-more::after {
    content: '\f105';
    font-family: 'FontAwesome';
    transition: transform 0.3s ease;
}

.news-card .read-more:hover::after {
    transform: translateX(5px);
}

/* ========== Footer ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .footer-about p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer .footer-logo {
    margin-bottom: 25px;
}

.footer .footer-logo img {
    height: 55px;
}

.footer h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.footer ul.footer-links li a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer ul.footer-links li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 12px;
    color: var(--primary-gold);
}

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

.footer .newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer .newsletter-form {
    position: relative;
    display: flex;
    margin-bottom: 25px;
}

.footer .newsletter-form input {
    flex: 1;
    padding: 13px 55px 13px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    font-family: 'Hind', sans-serif;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.12);
}

.footer .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: var(--primary-gold);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0 2px 2px 0;
    transition: all 0.3s ease;
}

.footer .newsletter-form button:hover {
    background: #e0a021;
}

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

.footer .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer .footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

/* ========== Back to Top / Side Buttons ========== */
.sidebar-controls {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

.style-switcher-btn {
    width: 38px;
    height: 38px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

/* ========== Responsive ========== */
@media (max-width: 992px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    
    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        padding: 12px 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav > ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-nav > ul > li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .main-nav > ul > li > a {
        padding: 14px 0;
    }
    
    .main-nav > ul > li > ul.sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 10px 15px;
        border: none;
        display: none;
    }
    
    .main-nav > ul > li.open > ul.sub-menu {
        display: block;
    }
    
    .header .mobile-menu-btn {
        display: flex;
    }
    
    .header .nav-right .btn {
        display: none;
    }
    
    .slider-slide {
        height: 550px;
    }
    
    .slider-slide h1 {
        font-size: 36px;
    }
    
    .slider-nav.prev { left: 10px; }
    .slider-nav.next { right: 10px; }
    
    .service-section .service-bg-img {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .service-section .service-intro {
        padding: 40px 20px;
    }
    
    .callback-section .callback-bg {
        display: none;
    }
    
    .callback-form-wrap {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .slider-slide {
        height: 480px;
    }
    
    .slider-slide h1 {
        font-size: 28px;
    }
    
    .callback-form .form-group {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-bar .top-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .feature-section,
    .service-section,
    .testimonial-section,
    .our-team,
    .gallery-section,
    .news-section,
    .fact-counter {
        padding: 50px 0;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
}

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