:root {
    --primary-color: #ac8243;
    --primary-dark: #8a6635;
    --primary-light: #e5be6e;
    --secondary-color: #3c3c3c;
    --accent-color: #e5be6e;
    --bg-light: #f5f0e8;
    --bg-dark: #3c3c3c;
    --text-dark: #2d2d2d;
    --text-muted: #7c7c7c;
    --gradient-primary: linear-gradient(135deg, #ac8243 0%, #e5be6e 100%);
    --gradient-accent: linear-gradient(135deg, #e5be6e 0%, #ac8243 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.loader-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-icon i {
    font-size: 3rem;
    color: #fff;
}

.loader-icon .brand-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.loader-brand .brand-accent {
    color: var(--accent-color);
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 190, 110, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(229, 190, 110, 0.2);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    text-align: justify;
}

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

.navbar {
    background: #fff;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: #fff;
}

.top-bar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social-link:hover {
    background: #fff;
    color: var(--primary-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.brand-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.loader-icon .brand-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.navbar-brand .brand-logo-img {
    height: 80px;
}

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

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-accent {
    color: var(--accent-color);
}

.navbar .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(172, 130, 67, 0.4);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.hero-carousel .carousel-item {
    min-height: 100vh;
    position: relative;
}

.hero-carousel .carousel-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    z-index: 0;
}

.hero-carousel .carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(60, 60, 60, 0.7);
    z-index: 1;
}

.hero-carousel .carousel-item .container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-carousel .carousel-indicators {
    bottom: 40px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    opacity: 1;
    margin: 0 6px;
}

.hero-carousel .carousel-indicators button.active {
    background: var(--primary-color);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(172, 130, 67, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(172, 130, 67, 0.3);
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    filter: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #4a4a4a 50%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 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.03'%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");
}

.hero-badge {
    display: inline-block;
    background: rgba(229, 190, 110, 0.15);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(229, 190, 110, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}

.text-highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero-buttons .btn-primary {
    background: var(--gradient-accent);
    border: none;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

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

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(172, 130, 67, 0.1), rgba(229, 190, 110, 0.1));
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

/* Section Styles */
.section-header {
    max-width: 600px;
}

.section-badge {
    display: inline-block;
    background: rgba(172, 130, 67, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.about-image {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-box i {
    font-size: 4rem;
    color: #fff;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(172, 130, 67, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.feature-content h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #fff;
}

.services-preview-section {
    background: var(--bg-light);
    position: relative;
}

.services-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(172, 130, 67, 0.1);
    border-color: rgba(172, 130, 67, 0.15);
}

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

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(172, 130, 67, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 35px rgba(172, 130, 67, 0.35);
}

.service-icon i {
    font-size: 1.75rem;
    color: #fff;
    transition: transform 0.4s ease;
}

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

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(172, 130, 67, 0.2);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
    box-shadow: 0 6px 25px rgba(172, 130, 67, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.service-link:hover i {
    transform: translateX(4px);
}

.section-cta-wrapper {
    position: relative;
    padding: 3rem 0 1rem;
}

.section-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-cta-wrapper .btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(172, 130, 67, 0.25);
}

.section-cta-wrapper .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(172, 130, 67, 0.35);
}

.section-cta-wrapper .btn-primary i {
    transition: transform 0.3s ease;
}

.section-cta-wrapper .btn-primary:hover i {
    transform: translateX(5px);
}

.service-cta {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.cta-content h3 {
    margin-bottom: 1rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(172, 130, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vision-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.vision-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.vision-text {
    color: var(--text-muted);
    margin: 0;
}

.mission-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    color: #fff;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.mission-list li i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.value-item {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.value-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--secondary-color);
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #fff 40%, #fff 60%, #f5f0e8 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.why-section .section-badge {
    background: linear-gradient(135deg, rgba(172, 130, 67, 0.15), rgba(229, 190, 110, 0.15));
    border: 1px solid rgba(172, 130, 67, 0.2);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.why-features::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 30px;
    width: 2px;
    height: calc(100% - 80px);
    background: linear-gradient(180deg, var(--primary-color), rgba(172, 130, 67, 0.2));
    z-index: 0;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-number {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(172, 130, 67, 0.3);
    position: relative;
    z-index: 1;
}

.why-item:hover .why-number {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 12px 35px rgba(172, 130, 67, 0.45);
}

.why-content {
    padding-top: 0.25rem;
}

.why-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.why-item:hover .why-content h4 {
    color: var(--primary-color);
}

.why-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.why-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.why-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
}

.why-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-image-card:hover img {
    transform: scale(1.08);
}

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(60, 60, 60, 0.85) 75%, rgba(60, 60, 60, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.why-image-card:hover .why-image-overlay {
    background: linear-gradient(180deg, rgba(172, 130, 67, 0.2) 0%, rgba(60, 60, 60, 0.85) 50%, rgba(60, 60, 60, 0.95) 100%);
}

.why-image-content {
    color: #fff;
}

.why-image-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.why-image-card:hover .why-image-icon {
    background: var(--gradient-primary);
}

.why-image-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-image-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
}

.contact-details h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid #d0c8b8;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(172, 130, 67, 0.15);
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    background: var(--gradient-primary);
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ac8243 0%, #8a6635 50%, #6a4f1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.cta-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-cta-primary {
    background: #fff;
    color: #ac8243;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #fff;
    color: #c49a4e;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    padding: 5rem 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--secondary-color);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

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

    .about-image {
        height: 350px;
    }

    .experience-badge {
        right: 10px;
        bottom: -10px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 100px;
    }

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

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

    .why-image-card {
        min-height: 250px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .why-item {
        flex-direction: column;
        gap: 1rem;
    }

    .why-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
    }

    .why-features::before {
        left: 24px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: #fff;
}

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

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

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

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

/* ============================================================
   INDUCT-STYLED COMPONENTS
   ============================================================ */

/* ---------- Custom Cursor ---------- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

@media (max-width: 991px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ---------- Preloader Upgrades ---------- */
#preloader .loader-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#preloader .loader-circle-arc {
    animation: drawCircle 2s ease-in-out forwards;
    transform-origin: center;
    transform: rotate(-90deg);
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

#preloader .loader-text {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

#preloader .loader-text span {
    display: inline-block;
    animation: letterAnim 1.4s ease-in-out infinite;
}

#preloader .loader-text span:nth-child(1) { animation-delay: 0s; }
#preloader .loader-text span:nth-child(2) { animation-delay: 0.1s; }
#preloader .loader-text span:nth-child(3) { animation-delay: 0.2s; }
#preloader .loader-text span:nth-child(4) { animation-delay: 0.3s; }
#preloader .loader-text span:nth-child(5) { animation-delay: 0.4s; }
#preloader .loader-text span:nth-child(6) { animation-delay: 0.5s; }
#preloader .loader-text span:nth-child(7) { animation-delay: 0.6s; }

@keyframes letterAnim {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px);
    }
}

#preloader .loader-icon {
    animation: none;
}

/* ---------- Main Header (Induxt-style) ---------- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
}

.main-header.sticky {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.header-outer {
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Main Menu (desktop) */
.main-menu {
    display: flex;
    align-items: center;
}

.main-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    margin: 0 0.25rem;
}

.main-menu ul li a {
    display: block;
    padding: 0.6rem 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.main-menu ul li a:hover,
.main-menu ul li.current a {
    color: var(--primary-color);
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.main-menu ul li a:hover::after,
.main-menu ul li.current a::after {
    width: 60%;
}

/* Menu Right Content */
.menu-right-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

/* Sidebar Toggle (hamburger) */
.sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    color: #fff;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(172, 130, 67, 0.35);
}

/* Mobile Nav Toggler */
.mobile-nav-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 22px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-toggler span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    z-index: 99997;
    transition: right 0.4s ease;
}

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

.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.open .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    background: #fff;
    height: 100%;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu .menu-close {
    text-align: right;
    cursor: pointer;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.mobile-menu .menu-close:hover {
    color: var(--primary-color);
}

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

.mobile-menu .mobile-nav li {
    margin-bottom: 0.75rem;
}

.mobile-menu .mobile-nav li a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.3s ease;
}

.mobile-menu .mobile-nav li a:hover {
    color: var(--primary-color);
}

.mobile-menu-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ---------- About Sidebar ---------- */
.sidebar-info {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 99998;
    transition: right 0.45s ease;
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

.sidebar-info.active {
    right: 0;
}

.sidebar-info-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.sidebar-info-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.sidebar-content {
    padding: 3rem 2.5rem;
}

.sidebar-logo {
    margin-bottom: 2rem;
}

.sidebar-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.sidebar-content>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sidebar-content h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.sidebar-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.sidebar-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.sidebar-contact li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 16px;
}

.sidebar-social {
    display: flex;
    gap: 0.75rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(172, 130, 67, 0.3);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

/* ---------- Search Popup ---------- */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
}

.search-popup .search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);
}

.search-popup .search-form {
    position: relative;
    width: 600px;
    max-width: 90%;
}

.search-popup input {
    width: 100%;
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-popup input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-popup button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s ease;
}

.search-popup button:hover {
    color: var(--accent-color);
}

/* ---------- Dual-Text Buttons (btn-wrap) ---------- */
.btn-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    vertical-align: middle;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 45px;
    min-width: 140px;
}

.btn-wrap:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(172, 130, 67, 0.4);
    transform: translateY(-2px);
}

.btn-wrap .text-one,
.btn-wrap .text-two {
    display: block;
    transition: transform 0.4s ease;
    width: 100%;
    text-align: center;
}

.btn-wrap .text-two {
    position: absolute;
    left: 0;
    top: 100%;
}

.btn-wrap:hover .text-one {
    transform: translateY(-100%);
}

.btn-wrap:hover .text-two {
    top: 50%;
    transform: translateY(-50%);
}

/* ---------- Section Titles (sec-title) ---------- */
.sec-title {
    margin-bottom: 2.5rem;
}

.sec-title .sec-sub-title {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.sec-title .sec-sub-title::before {
    content: '--: ';
}

.sec-title .sec-sub-title::after {
    content: ' :--';
}

.sec-title h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.15;
}

.sec-title .sec-text {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 1rem;
    max-width: 600px;
}

.sec-title.text-center .sec-text {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Marquee ---------- */
.marquee-section {
    background: var(--secondary-color);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--secondary-color), transparent);
}

.marquee-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-text span {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 4rem;
}

.marquee-text span i {
    margin-right: 0.75rem;
    font-size: 0.6rem;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Odometer Styles ---------- */
.odometer-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.odometer-counter .odometer {
    font-size: inherit;
    line-height: 1;
}

.odometer.odometer-theme-default .odometer-value {
    color: inherit;
}

/* ---------- Swiper Hero ---------- */
.hero-swiper {
    width: 100%;
    height: 100vh;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-slide-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active .swiper-slide-bg {
    transform: scale(1.05);
}

.hero-swiper .swiper-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(60, 60, 60, 0.7);
    z-index: 1;
}

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

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: rgba(172, 130, 67, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(172, 130, 67, 0.25);
    color: #fff;
    transition: all 0.35s ease;
}

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

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

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

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.15);
}

/* Swiper Slide Content Animations */
.hero-swiper .swiper-slide .animate-item {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}

.hero-swiper .swiper-slide-active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

.hero-swiper .swiper-slide-active .animate-item.delay-1 {
    transition-delay: 0.3s;
}
.hero-swiper .swiper-slide-active .animate-item.delay-2 {
    transition-delay: 0.5s;
}
.hero-swiper .swiper-slide-active .animate-item.delay-3 {
    transition-delay: 0.7s;
}
.hero-swiper .swiper-slide-active .animate-item.delay-4 {
    transition-delay: 0.9s;
}
.hero-swiper .swiper-slide-active .animate-item.delay-5 {
    transition-delay: 1.1s;
}

/* ---------- Client Logo Swiper ---------- */
.client-logo-section {
    padding: 3rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.client-logo-section .sec-title {
    margin-bottom: 2rem;
}

.client-logo-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}

.client-logo-swiper .swiper-slide .logo-placeholder {
    width: 160px;
    height: 65px;
    background: rgba(172, 130, 67, 0.08);
    border: 1px solid rgba(172, 130, 67, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-logo-swiper .swiper-slide .logo-placeholder:hover {
    background: rgba(172, 130, 67, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ---------- Image Reveal Utilities ---------- */
.img-reveal {
    position: relative;
    overflow: hidden;
    display: block;
}

.img-reveal img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-reveal:hover img {
    transform: scale(1.06);
}

.overlay-anim {
    position: relative;
    overflow: hidden;
}

.overlay-anim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    z-index: 1;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1) 0.3s;
}

.overlay-anim.wow-animated::after {
    transform: translateX(101%);
}

/* ---------- Magnific Popup Overrides ---------- */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.95);
}

/* ---------- Page Header (shared) ---------- */
.page-header {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('/Images/banner-2.jpg') center center / cover no-repeat;
    z-index: 0;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(172, 130, 67, 0.92) 0%, rgba(60, 60, 60, 0.88) 100%);
    z-index: 1;
}

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

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ---------- Responsive: Header & Menu ---------- */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }

    .menu-right-content .btn-wrap,
    .menu-right-content .search-btn {
        display: none;
    }

    .mobile-nav-toggler {
        display: flex;
    }

    .sidebar-toggle {
        display: inline-flex;
    }

    .sidebar-info {
        width: 340px;
        right: -360px;
    }

    .sidebar-content {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .sidebar-info {
        width: 100%;
        right: -100%;
    }
}

/* ---------- Responsive: Hero Swiper ---------- */
@media (max-width: 767px) {
    .hero-swiper {
        height: 100vh;
    }

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

    .hero-swiper .swiper-slide .hero-title {
        font-size: 1.75rem;
    }

    .hero-swiper .swiper-slide .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-swiper .swiper-slide .hero-buttons {
        flex-direction: column;
    }

    .hero-swiper .swiper-slide .hero-buttons .btn {
        width: 100%;
    }

    .hero-swiper .swiper-slide .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-swiper .swiper-slide .stat-item {
        flex: 1 1 80px;
    }

    .hero-swiper .swiper-slide .stat-number {
        font-size: 1.75rem;
    }

    .logo img {
        height: 60px;
    }
}

/* ---------- Responsive: Marquee ---------- */
@media (max-width: 767px) {
    .marquee-text span {
        font-size: 0.8rem;
        margin-right: 2.5rem;
        letter-spacing: 1px;
    }

    .marquee-section::before,
    .marquee-section::after {
        width: 30px;
    }
}

/* ---------- Responsive: Client Logos ---------- */
@media (max-width: 767px) {
    .client-logo-section {
        padding: 2rem 0;
    }

    .client-logo-swiper .swiper-slide .logo-placeholder {
        width: 130px;
        height: 55px;
        font-size: 0.75rem;
    }
}

/* ---------- About Page: Story Stats ---------- */
.story-image-wrapper {
    position: relative;
}

.story-stats-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.story-stats-card i {
    font-size: 2rem;
}

.story-stats-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

/* ---------- Magnific Popup Video Button ---------- */
.popup-video {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.popup-video .video-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(172, 130, 67, 0.3);
}

.popup-video:hover .video-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(172, 130, 67, 0.45);
}

.popup-video .video-label {
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.popup-video:hover .video-label {
    color: var(--primary-color);
}

/* ============================================================
   ABOUT PAGE (Induxt-inspired)
   ============================================================ */

/* ---------- About Intro: Image with Overlap ---------- */
.about-intro-section {
    padding: 6rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.about-intro-section .about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.about-intro-section .about-image-main {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-intro-section .about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-intro-section .about-image-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.about-intro-section .about-image-icon i {
    font-size: 4rem;
    color: #fff;
}

.about-intro-section .experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--accent-color);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.about-intro-section .experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-intro-section .experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    display: block;
}

.about-intro-section .about-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.about-intro-section .about-bullet-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-intro-section .about-bullet-list li:last-child {
    border-bottom: none;
}

.about-intro-section .about-bullet-list li i {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.about-intro-section .about-social-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-intro-section .about-social-row span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-section .about-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.about-intro-section .about-social-row a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(172, 130, 67, 0.3);
}

/* ---------- Feature Cards (Numbered Grid) ---------- */
.features-grid-section {
    padding: 6rem 0;
    background: #fff;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.feature-card-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: rgba(172, 130, 67, 0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.feature-card:hover .feature-card-number {
    color: rgba(172, 130, 67, 0.2);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: 1.35rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(172, 130, 67, 0.2);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 30px rgba(172, 130, 67, 0.35);
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ---------- About Story: Dual Images ---------- */
.about-story-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.story-dual-images {
    position: relative;
    padding-bottom: 30px;
}

.story-img-main {
    width: 85%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.story-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--bg-light);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.story-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-img-sub:hover img {
    transform: scale(1.05);
}

/* Story Stats Row */
.story-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.story-stats-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(229, 190, 110, 0.1) 0%, transparent 60%);
}

.story-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.story-stat-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.story-stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.story-stat-item small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Why Choose Us ---------- */
.about-choose-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.choose-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.choose-feature-box:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.choose-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.choose-feature-box:hover .choose-feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.choose-feature-content h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.choose-feature-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.choose-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.choose-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.choose-phone i {
    width: 42px;
    height: 42px;
    background: rgba(172, 130, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.choose-phone:hover i {
    background: var(--gradient-primary);
    color: #fff;
}

.choose-image-card {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.choose-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ---------- Services Intro ---------- */
.services-intro-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.services-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-intro-image:hover img {
    transform: scale(1.05);
}

/* ---------- Service Cards Grid ---------- */
.service-card-grid-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.service-card-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.service-card-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: block;
    text-decoration: none;
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.service-card-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-grid-item:hover img {
    transform: scale(1.08);
}

.service-card-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(60, 60, 60, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.service-card-grid-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(172, 130, 67, 0.85) 0%, rgba(60, 60, 60, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-grid-item:hover .service-card-grid-overlay::before {
    opacity: 1;
}

.service-card-grid-content {
    position: relative;
    z-index: 1;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.service-card-grid-item:hover .service-card-grid-content {
    transform: translateY(0);
}

.service-card-grid-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.service-card-grid-item:hover .service-card-grid-icon {
    opacity: 1;
    transform: translateY(0);
}

.service-card-grid-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.service-card-grid-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-card-grid-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.service-card-grid-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.4s ease;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
}

.service-card-grid-item:hover .service-card-grid-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card-grid-arrow:hover {
    background: var(--gradient-primary);
}

/* ---------- Service Detail Blocks ---------- */
.service-detail-section {
    padding: 6rem 0;
    background: #fff;
}

.service-detail-block {
    padding: 4rem 0;
}

.service-detail-block + .service-detail-block {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
}

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

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-image .service-detail-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-content {
    padding: 1rem 0;
}

.service-detail-content .service-detail-content-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(172, 130, 67, 0.25);
}

.service-detail-content .service-detail-content-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-detail-content .sec-title {
    margin-bottom: 1.5rem;
}

.service-detail-content .sec-sub-title {
    font-size: 0.85rem;
}

.service-detail-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-detail-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-detail-tag i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.service-detail-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

.service-detail-tag:hover i {
    color: #fff;
}

/* ---------- Process Section ---------- */
.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: rgba(172, 130, 67, 0.15);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.process-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.process-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Responsive: Services Page ---------- */
@media (max-width: 991px) {
    .services-intro-image {
        height: 320px;
        margin-bottom: 2rem;
    }

    .service-card-grid-item {
        height: 320px;
    }

    .service-detail-image {
        height: 320px;
        margin-bottom: 2rem;
    }

    .service-detail-block .row {
        flex-direction: column-reverse;
    }

    .service-detail-block.reverse .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 575px) {
    .services-intro-image {
        height: 240px;
    }

    .service-card-grid-item {
        height: 280px;
    }

    .service-detail-image {
        height: 240px;
    }
}

/* ---------- Responsive: About Page ---------- */
@media (max-width: 991px) {
    .about-intro-section .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .about-intro-section .about-image-main {
        height: 350px;
    }

    .about-intro-section .experience-badge {
        bottom: -15px;
        right: 10px;
        padding: 1rem 1.5rem;
    }

    .story-dual-images {
        margin-bottom: 2rem;
    }

    .story-img-main {
        width: 100%;
        height: 300px;
    }

    .story-img-sub {
        width: 60%;
        height: 200px;
    }

    .story-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .story-stat-item:not(:last-child)::after {
        display: none;
    }

    .choose-image-card {
        height: 350px;
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .about-intro-section .about-image-main {
        height: 260px;
    }

    .story-img-main {
        height: 220px;
    }

    .story-img-sub {
        width: 65%;
        height: 150px;
    }

    .story-stats-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.25rem;
    }

    .story-stat-item h4 {
        font-size: 1.5rem;
    }

    .choose-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
