/* ============================================
   S.K. ENTERPRISES - MAIN STYLESHEET (DARK THEME)
   ============================================ */

/* ====== CSS VARIABLES / COLOR PALETTE ====== */
:root {
    --primary: #9b27af;           /* Purple accent */
    --primary-dark: #7b1fa2;
    --primary-light: #ce93d8;
    --secondary: #0a0a0a;         /* Pure black */
    --secondary-light: #111111;
    --accent: #ce93d8;            /* Light purple accent */
    --text-dark: #f0f0f0;
    --text-body: #cccccc;
    --text-muted: #999999;
    --bg-light: #1a1a1a;
    --bg-section: #141414;
    --white: #ffffff;
    --border: #2a2a2a;
    --success: #10b981;
    --whatsapp: #25d366;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.4), 0 2px 4px -2px rgba(0,0,0,.3);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,.5), 0 4px 6px -4px rgba(0,0,0,.3);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.5), 0 8px 10px -6px rgba(0,0,0,.3);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.7);
    
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Poppins', system-ui, sans-serif;
}

/* ====== GLOBAL RESET / BASE ====== */
* {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--secondary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

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

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

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

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

/* ====== UTILITIES ====== */
.section-padding {
    padding: 90px 0;
}

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

.section-heading.text-center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    padding-left: 40px;
}

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

.section-heading.text-center .section-subtitle {
    padding-left: 0;
    padding: 0 50px;
}

.section-heading.text-center .section-subtitle::before {
    content: '';
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    top: auto;
    bottom: -10px;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ====== BUTTONS ====== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(155, 39, 175, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(155, 39, 175, 0.55);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: var(--white);
    padding: 10px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ====== TOP BAR ====== */
.top-bar {
    background: #050505;
    color: rgba(255,255,255,0.85);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--primary);
}

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

.top-bar-item {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: var(--primary-light);
}

.top-bar-item i {
    color: var(--primary);
}

.top-bar-social {
    display: inline-flex;
    gap: 12px;
}

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

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

/* ====== HEADER / NAVBAR ====== */
.main-header {
    background: #0d0d0d;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

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

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

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -1px;
    box-shadow: 0 4px 12px rgba(155, 39, 175, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    margin: 0 2px;
    position: relative;
    transition: var(--transition);
}

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

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

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

.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(155, 39, 175, 0.3);
}

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

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

.hero-slide {
    height: clamp(500px, 80vh, 700px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--secondary), transparent);
    pointer-events: none;
}

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

.hero-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 8px 20px;
    background: rgba(155, 39, 175, 0.15);
    border-radius: 50px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.7;
}

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

.carousel-indicators {
    bottom: 100px;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
    border: none;
}

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

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

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    background-size: 22px;
}

/* Hero content animation */
.carousel-item.active .hero-subtitle { animation: fadeInUp 0.8s 0.2s both; }
.carousel-item.active .hero-title { animation: fadeInUp 0.8s 0.4s both; }
.carousel-item.active .hero-description { animation: fadeInUp 0.8s 0.6s both; }
.carousel-item.active .hero-buttons { animation: fadeInUp 0.8s 0.8s both; }

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

/* ====== ABOUT SECTION ====== */
.about-section {
    background: var(--secondary-light);
}

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

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: rgba(155, 39, 175, 0.08);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 22px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.exp-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.about-text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-feature:hover {
    background: #222;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.about-feature i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
}

.about-feature h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 13.5px;
    margin: 0;
    color: var(--text-muted);
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background: var(--bg-section);
    position: relative;
}

.service-card {
    background: #1c1c1c;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-section);
}

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

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

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
}

.service-body {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary-light);
}

.service-text {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-call-now:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

/* ====== WHY CHOOSE US SECTION ====== */
.why-section {
    background: var(--secondary-light);
}

.why-card {
    background: #1a1a1a;
    padding: 30px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: #222;
    border-color: transparent;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(155, 39, 175, 0.35);
}

.why-card:hover .why-icon {
    transform: rotateY(180deg);
}

.why-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

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

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 39, 175, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 39, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.counter-item {
    color: var(--white);
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: rgba(155, 39, 175, 0.15);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.counter-item:hover .counter-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 6px;
    line-height: 1;
}

.counter-number::after {
    content: '+';
    color: var(--primary-light);
}

.counter-label {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ====== HOW IT WORKS SECTION ====== */
.how-section {
    background: var(--bg-section);
    position: relative;
}

.step-card {
    background: #1c1c1c;
    padding: 35px 26px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(155, 39, 175, 0.12);
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: rgba(155, 39, 175, 0.28);
    transform: scale(1.1);
}

.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(155, 39, 175, 0.4);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: rotateY(360deg);
}

.step-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* ====== GALLERY SECTION ====== */
.gallery-section {
    background: var(--secondary-light);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    background: var(--bg-section);
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 39, 175, 0.85) 0%, rgba(100, 0, 130, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* ====== TESTIMONIAL SECTION ====== */
.testimonial-section {
    background: var(--bg-section);
}

.testimonial-card {
    background: #1c1c1c;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-rating {
    margin-bottom: 14px;
    color: var(--primary-light);
    font-size: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.testimonial-author h5 {
    font-size: 1rem;
    margin: 0 0 2px;
    color: var(--text-dark);
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.btn-test-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #1c1c1c;
    color: var(--primary-light);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

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

/* ====== FAQ SECTION ====== */
.faq-section {
    background: var(--secondary-light);
}

.faq-cta {
    margin-top: 36px;
    padding: 28px;
    background: rgba(155, 39, 175, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.faq-cta h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #1c1c1c;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-button {
    background: #1c1c1c;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    box-shadow: none !important;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239b27af'%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");
    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 24px;
    color: var(--text-body);
    line-height: 1.75;
    background: #181818;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background: var(--bg-section);
}

.contact-info-card {
    background: #1c1c1c;
    padding: 32px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(155, 39, 175, 0.1), transparent);
    border-radius: 0 var(--radius-md) 0 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(155, 39, 175, 0.35);
    position: relative;
    z-index: 1;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.contact-info-card p {
    color: var(--text-body);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-light);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #1c1c1c;
    padding: 38px 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 26px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 16px;
    font-size: 15px;
    transition: var(--transition);
    background: #141414;
    color: var(--text-body);
}

.form-control::placeholder {
    color: #555;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 39, 175, 0.2);
    background: #1a1a1a;
    color: var(--text-dark);
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    min-height: 500px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ====== FOOTER ====== */
.main-footer {
    background: #050505;
    color: rgba(255,255,255,0.75);
    position: relative;
    padding-top: 30px;
}

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

.footer-brand .brand-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 22px 0;
}

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

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

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

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

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

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 11px;
    color: var(--primary);
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.5);
}

/* ====== FLOATING ICONS ====== */
.floating-btn {
    position: fixed;
    bottom: 135px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp {
    left: 25px;
    background: var(--whatsapp);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    animation: pulseGreen 2s infinite;
}

.floating-call {
    right: 25px;
    background: var(--primary);
    box-shadow: 0 8px 25px rgba(155, 39, 175, 0.5);
    animation: pulsePurple 2s infinite 1s;
}

.floating-btn:hover {
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
}

.floating-tooltip {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    background: #1a1a1a;
    color: var(--white);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.floating-whatsapp .floating-tooltip {
    left: 70px;
}

.floating-whatsapp .floating-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent #1a1a1a transparent transparent;
}

.floating-call .floating-tooltip {
    right: 70px;
}

.floating-call .floating-tooltip::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #1a1a1a;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulsePurple {
    0% { box-shadow: 0 8px 25px rgba(155, 39, 175, 0.5), 0 0 0 0 rgba(155, 39, 175, 0.7); }
    70% { box-shadow: 0 8px 25px rgba(155, 39, 175, 0.5), 0 0 0 18px rgba(155, 39, 175, 0); }
    100% { box-shadow: 0 8px 25px rgba(155, 39, 175, 0.5), 0 0 0 0 rgba(155, 39, 175, 0); }
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #1a1a1a;
    color: var(--white);
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.back-to-top.show {
    display: inline-flex;
}

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

/* ====== AOS-STYLE REVEAL ANIMATION ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.cu-lg-wdth{
    width:230px;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container { max-width: 1280px; }
}

/* Tablet & Below */
@media (max-width: 991.98px) {
    .section-padding { padding: 70px 0; }
    
    .top-bar { font-size: 13px; padding: 8px 0; }
    .top-bar-info { justify-content: center; }
    
    .navbar-collapse {
        background: #111;
        margin-top: 14px;
        padding: 18px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border);
    }
    
    .navbar-nav .nav-link::after { display: none; }
    
    .navbar-nav .btn-primary-custom { margin-top: 12px; }
    
    .hero-slide { height: clamp(440px, 70vh, 580px); }
    .carousel-indicators { bottom: 70px; }
    
    .about-image-wrapper { padding: 15px; margin-bottom: 30px; }
    .about-experience-badge { padding: 16px 22px; }
    .exp-number { font-size: 2.4rem; }
    
    .section-heading { margin-bottom: 38px; }
    
    .contact-form-wrapper { padding: 30px 24px; }
    
    .map-wrapper { min-height: 400px; }
    
    .faq-cta { margin-top: 24px; margin-bottom: 30px; }
}

/* Mobile */
@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .hero-content{
        text-align:center;
    }
    .section-padding { padding: 55px 0;overflow-x: hidden; }
    
    .top-bar { padding: 8px 0; }
    .top-bar-info { font-size: 12.5px; gap: 10px; }
    
    .brand-icon { width: 42px; height: 42px; font-size: 17px; border-radius: 10px; }
    .brand-name { font-size: 1.05rem; }
    .brand-tagline { font-size: 9.5px; }
    
    .navbar { padding: 0px 0 !important; }
    
    .hero-slide { height: 540px; padding: 30px 0; }
    .hero-subtitle { font-size: 11px; letter-spacing: 2px; padding: 6px 14px; }
    .hero-title { font-size: 1.85rem; margin-bottom: 16px; }
    .hero-description { font-size: 0.95rem; margin-bottom: 22px; }
    .hero-buttons { gap: 10px; justify-content:center; }
    .hero-buttons .btn { padding: 10px 20px; font-size: 14px; }
    .carousel-indicators { bottom: 30px; }
    .carousel-control-prev-icon, .carousel-control-next-icon { 
        width: 38px; height: 38px; background-size: 16px;
    }
    
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 12px; letter-spacing: 2px; padding-left: 32px; }
    .section-subtitle::before { width: 22px; }
    .section-description { font-size: 0.95rem; }
    
    .about-experience-badge { 
        padding: 14px 18px;
        bottom: 14px;
        left: 0;
        gap: 10px;
    }
    .exp-number { font-size: 2rem; }
    .exp-text { font-size: 12px; }
    
    .service-body { padding: 22px 20px; }
    .service-title { font-size: 1.1rem; }
    .service-text { font-size: 14px; }
    
    .why-card { padding: 24px 20px; }
    .why-icon { width: 52px; height: 52px; font-size: 1.4rem; }
    
    .counter-section { padding: 50px 0; }
    .counter-icon { width: 56px; height: 56px; font-size: 1.5rem; margin-bottom: 12px; }
    .counter-number { font-size: 2rem; }
    .counter-label { font-size: 13px; }
    
    .step-card { padding: 28px 22px 22px; }
    .step-icon { width: 64px; height: 64px; font-size: 1.7rem; }
    
    .testimonial-card { padding: 26px 22px; }
    .testimonial-text { font-size: 14.5px; }
    .author-avatar { width: 46px; height: 46px; font-size: 1rem; }
    
    .accordion-button { padding: 16px 18px; font-size: 14.5px; }
    .accordion-body { padding: 18px; font-size: 14.5px; }
    
    .contact-info-card { padding: 26px 22px; }
    .contact-form-wrapper { padding: 26px 22px; }
    .contact-form-wrapper h3 { font-size: 1.3rem; }
    
    .map-wrapper { min-height: 320px; }
    
    .floating-btn { width: 50px; height: 50px; font-size: 22px; }
    .floating-whatsapp { left: 18px; bottom: 135px; }
    .floating-call { right: 18px; bottom: 135px; }
    .floating-tooltip { display: none; }
    
    .back-to-top { right: 18px; bottom: 10px; width: 40px; height: 40px; font-size: 16px; }
    
    .footer-bottom { text-align: center; }
    .footer-bottom p { margin-bottom: 4px; }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.6rem; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    .section-title { font-size: 1.45rem; }
    
    .about-experience-badge {
        position: relative;
        bottom: auto; left: auto;
        margin-top: -30px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-image-wrapper::before, .about-image-wrapper::after { display: none; }
}

@media(max-width:374px)
{
    .cu-lg-wdth{
        width:210px;
    }
}
