/* ============================================================
   EXPERT SERVICES - MAIN STYLESHEET
   Color Theme: #F36823 (Orange), #033272 (Navy Blue)
   Light BG: #E9F5FE
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #033272;
    --secondary: #F36823;
    --light-blue: #E9F5FE;
    --white: #ffffff;
    --dark: #0a1a3a;
    --gray: #6c757d;
    --light-gray: #f5f7fa;
    --text-color: #4a5568;
    --heading-color: #1a2e4f;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(3, 50, 114, 0.08);
    --shadow-md: 0 8px 24px rgba(3, 50, 114, 0.12);
    --shadow-lg: 0 16px 48px rgba(3, 50, 114, 0.15);
    --shadow-hover: 0 20px 50px rgba(243, 104, 35, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
}

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

a:hover {
    color: var(--secondary);
}

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

::selection {
    background: var(--secondary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ===== Utility Classes ===== */
.section-padding {
    padding: 100px 0;
}

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

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

.text-accent {
    color: var(--secondary);
}

/* ===== Section Header ===== */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 6px 18px;
    background: rgba(243, 104, 35, 0.1);
    border-radius: 30px;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.text-start .section-subtitle {
    margin: 0;
}

/* ===== Custom Buttons ===== */
.btn-primary-custom {
    background: var(--secondary);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary-custom:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar-info, .top-bar-social {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top-bar-info li i {
    color: var(--secondary);
    margin-right: 6px;
}

.top-bar-social {
    justify-content: flex-end;
    gap: 12px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.top-bar-social a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1030;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), #ff8a3d);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(243, 104, 35, 0.3);
    font-family: var(--font-body);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 3px;
    margin-top: 4px;
}

.navbar-nav .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 25px;
}

.btn-header {
    background: var(--primary);
    color: var(--white) !important;
    padding: 11px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-header::after {
    display: none;
}

/* Custom Mobile Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
}

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

.toggler-icon {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-section {
    position: relative;
}

.min-vh-hero {
    min-height: calc(100vh - 130px);
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

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

.hero-content {
    padding: 80px 0;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    font-family: var(--font-body);
}

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

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

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: var(--transition);
    margin: 0 6px;
    opacity: 1;
}

.carousel-indicators .active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 35px;
    border-radius: 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
}

.carousel-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover .carousel-arrow,
.carousel-control-next:hover .carousel-arrow {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

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

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

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

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

.about-experience {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(243, 104, 35, 0.4);
    z-index: 2;
}

.about-experience h3 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.about-lead {
    font-size: 17px;
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-text {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 25px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--light-blue);
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

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

.feature-item span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--light-blue), #d4ebff);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), #ff8a3d);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-features {
    margin-top: 30px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    margin-bottom: 18px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.why-item:hover {
    transform: translateX(8px);
    border-left-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary), #044599);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--secondary), #ff8a3d);
}

.why-content h4 {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.why-content p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

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

.why-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
}

.why-badge i {
    color: var(--secondary);
    font-size: 36px;
}

.why-badge h5 {
    font-size: 16px;
    margin: 0;
    color: var(--heading-color);
    font-weight: 700;
}

.why-badge span {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, #022355 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.counter-box {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(243, 104, 35, 0.15);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.counter-box:hover .counter-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.counter-number {
    display: inline-block;
    color: var(--white);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.counter-plus {
    color: var(--secondary);
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
}

.counter-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(3, 50, 114, 0.92), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-link {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    align-self: flex-start;
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 60px;
    line-height: 1;
    color: var(--light-blue);
    z-index: 0;
}

.testimonial-quote i {
    transform: scaleX(-1);
    display: inline-block;
}

.testimonial-rating {
    margin-bottom: 18px;
    position: relative;
}

.testimonial-rating i {
    color: #ffb800;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author h5 {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 2px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-indicators button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 35px;
    border-radius: 8px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-image-wrapper {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
}

.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--heading-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23033272'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 18px;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 22px 25px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    background: var(--white);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.branch-card {
    background: var(--white);
    padding: 30px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--light-blue));
    transition: var(--transition);
    z-index: 0;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

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

.branch-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #ff8a3d);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(243, 104, 35, 0.3);
    position: relative;
    z-index: 1;
}

.branch-card h4 {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.branch-card p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary) 0%, #022355 100%);
    color: var(--white);
    padding: 40px 35px;
    border-radius: 18px;
    height: 100%;
    box-shadow: var(--shadow-lg);
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info-box > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-info-item span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.contact-info-item a:hover {
    color: var(--secondary);
}

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

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

.contact-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 26px;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form .form-control {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    background: var(--light-gray);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(243, 104, 35, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: none;
}

.form-success-msg {
    padding: 14px 18px;
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
}

.form-success-msg i {
    margin-right: 8px;
    color: #28a745;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
	overflow-x:hidden
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.footer-widget h4 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

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

.footer-brand .logo-main {
    color: var(--white) !important;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

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

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px) rotate(360deg);
}

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

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

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

.footer-links a i {
    font-size: 12px;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(6px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
    min-width: 16px;
}

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

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom strong {
    color: var(--secondary);
}

/* ============================================================
   FLOATING ICONS
   ============================================================ */
.floating-icons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.float-btn {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    pointer-events: auto;
    z-index: 999;
}

.float-whatsapp {
    background: #25D366;
    bottom: 30px;
    left: 30px;
}

.float-call {
    background: var(--secondary);
    bottom: 30px;
    right: 30px;
}

.float-btn:hover {
    color: var(--white);
    transform: scale(1.12);
}

.float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 1.8s infinite;
}

.float-whatsapp .float-pulse {
    background: #25D366;
}

.float-call .float-pulse {
    background: var(--secondary);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title { font-size: 48px; }
    .section-title { font-size: 36px; }
    .why-image-wrapper img { height: 550px; }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    .section-title { font-size: 32px; }
    .hero-title { font-size: 42px; }
    .hero-content { padding: 60px 0; }
    .min-vh-hero { min-height: 550px; }

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

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }

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

    .btn-header {
        display: inline-block;
        margin-top: 10px;
    }

    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 30px;
    }

    .about-img-secondary,
    .about-experience {
        display: none;
    }

    .about-img-main img { height: 400px; }
    .why-image-wrapper { margin-top: 30px; }
    .why-image-wrapper img { height: 450px; }

    .contact-info-box {
        margin-bottom: 20px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .section-padding { padding: 60px 0;overflow-x:hidden }
    .section-title { font-size: 28px; }
    .section-header { margin-bottom: 40px; }
    .hero-title { font-size: 34px; }
    .hero-desc { font-size: 15px; }
    .hero-content { padding: 50px 0; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .min-vh-hero { min-height: 500px; }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .counter-number { font-size: 38px; }
    .counter-plus { font-size: 38px; }
    .counter-section { padding: 60px 0; }

    .contact-info-box,
    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .float-whatsapp { left: 18px; bottom: 18px; }
    .float-call { right: 18px; bottom: 18px; }
    .back-to-top { bottom: 85px; right: 18px; width: 40px; height: 40px; }

    .gallery-item img { height: 240px; }
    .why-image-wrapper img { height: 380px; }
    .testimonial-card { padding: 28px 22px; }
    .accordion-button { font-size: 15px; padding: 16px 18px; }
    .accordion-body { padding: 18px; font-size: 14px; }

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

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .section-title { font-size: 24px; }
    .hero-title { font-size: 28px; }
    .hero-tag { font-size: 11px; padding: 6px 16px; }

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

    .logo-icon { width: 42px; height: 42px; font-size: 18px; }
    .logo-main { font-size: 18px; }
    .logo-sub { font-size: 10px; letter-spacing: 2px; }

    .about-img-main img { height: 320px; }
    .service-card { padding: 30px 22px; }
    .service-icon { width: 65px; height: 65px; font-size: 28px; }
    .why-icon { width: 50px; height: 50px; font-size: 22px; }
    .why-item { padding: 18px; gap: 14px; }
    .why-badge { left: 15px; right: 15px; padding: 14px 18px; }

    .contact-info-box h3,
    .contact-form-wrapper h3 { font-size: 22px; }
    .contact-info-item { gap: 14px; }
    .contact-icon { width: 44px; height: 44px; min-width: 44px; font-size: 18px; }
}
