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

:root {
    --primary: #142b51;
    --gradient-start: #faa41a;
    --gradient-end: #f47521;
    --gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --shadow: 0 4px 20px rgba(20, 43, 81, 0.15);
    --shadow-lg: 0 10px 40px rgba(20, 43, 81, 0.2);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

section {
    overflow-x: hidden;
    max-width: 100%;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 10px 0;
    z-index: 1001;
}

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

.topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    opacity: 0.9;
}

.topbar-item:hover {
    opacity: 1;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
    border-radius: 50%;
    transition: var(--transition);
}

.topbar-social:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

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

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

ul {
    list-style: none;
}

.header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
    filter: brightness(1.1);
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

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


.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(244, 117, 33, 0.4);
    flex-shrink: 0;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 117, 33, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hero-new {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 43, 81, 0.85) 0%, rgba(20, 43, 81, 0.6) 50%, rgba(20, 43, 81, 0.75) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1s ease forwards;
}

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

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge-new span {
    width: 10px;
    height: 10px;
    background: var(--gradient-start);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title-new {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title-new span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-new {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons-new {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--gradient);
    border-radius: 3px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

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

.hero-cards-section {
    background: var(--dark);
    padding: 0;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.hero-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.hero-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.hero-card:hover .hero-card-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.hero-card:hover::before {
    background: linear-gradient(to top, rgba(20, 43, 81, 0.95) 0%, rgba(20, 43, 81, 0.6) 50%, rgba(20, 43, 81, 0.3) 100%);
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

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

.hero-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.hero-card-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s;
}

.hero-card:hover .hero-card-content p {
    transform: translateY(0);
    opacity: 0.8;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gradient-start);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s, gap 0.3s ease;
}

.hero-card:hover .hero-card-link {
    transform: translateY(0);
    opacity: 1;
}

.hero-card-link:hover {
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(244, 117, 33, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 117, 33, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

.hero-content.animated .hero-stats {
    opacity: 1;
    transform: translateY(0);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

.cta-icon {
    flex-shrink: 0;
}

.contact-icon {
    flex-shrink: 0;
    opacity: 0.8;
}


.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

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

.footer-desc {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-icon {
    font-size: 16px;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-divider {
    opacity: 0.5;
}

.footer-policy {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-policy:hover {
    opacity: 1;
    color: var(--gradient-start);
}

.page-hero {
    padding: 180px 0 80px;
    background: var(--primary);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 35px 0 15px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-wrapper ul li {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.content-wrapper .update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    font-style: italic;
    color: var(--gray);
}

.footer-credit {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-credit span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.footer-credit:hover {
    opacity: 1;
}

.footer-credit:hover span {
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 2px rgba(250, 164, 26, 0.5));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(250, 164, 26, 0.8)) drop-shadow(0 0 20px rgba(244, 117, 33, 0.6));
    }
}

.whatsapp-btn {
    display: none;
}

.text-marquee {
    background: var(--gradient);
    padding: 22px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-item {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.text-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gradient-end);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-tag span {
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about {
    padding: 100px 0;
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-experience {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

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

.about-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-feature.fade-up:nth-child(1) { transition-delay: 0.1s; }
.about-feature.fade-up:nth-child(2) { transition-delay: 0.2s; }
.about-feature.fade-up:nth-child(3) { transition-delay: 0.3s; }

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(20, 43, 81, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 43, 81, 0.2);
}

.service-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(20, 43, 81, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-img::after {
    opacity: 1;
}

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

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

.service-body {
    padding: 28px 25px;
    position: relative;
}

.service-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-card:hover .service-title {
    color: var(--gradient-end);
}

.service-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gradient-end);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

.service-link:hover {
    color: var(--gradient-start);
}

.service-link:hover svg {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.service-card.fade-up:nth-child(1) { transition-delay: 0.1s; }
.service-card.fade-up:nth-child(2) { transition-delay: 0.2s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.3s; }

.gallery {
    padding: 100px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(20, 43, 81, 0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.gallery-title {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-item.fade-up:nth-child(1) { transition-delay: 0.05s; }
.gallery-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.gallery-item.fade-up:nth-child(3) { transition-delay: 0.15s; }
.gallery-item.fade-up:nth-child(4) { transition-delay: 0.2s; }
.gallery-item.fade-up:nth-child(5) { transition-delay: 0.25s; }
.gallery-item.fade-up:nth-child(6) { transition-delay: 0.3s; }

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

.testimonials-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    padding: 45px 50px;
    box-shadow: 0 5px 30px rgba(20, 43, 81, 0.08);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
}

.testimonial-content {
    flex: 1;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 25px;
    color: #faa41a;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}

.testimonial-quote {
    color: var(--primary);
    flex-shrink: 0;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(20, 43, 81, 0.1);
}

.testimonial-arrow:hover {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(244, 117, 33, 0.3);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot:hover {
    background: #ccc;
}

.t-dot.active {
    width: 12px;
    height: 12px;
    background: var(--gradient);
}

.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 43, 81, 0.15);
    background: var(--white);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gradient-end);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(20, 43, 81, 0.1);
}

.why-card:hover .why-icon {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.why-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.why-card.fade-up:nth-child(1) { transition-delay: 0.05s; }
.why-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.why-card.fade-up:nth-child(3) { transition-delay: 0.15s; }
.why-card.fade-up:nth-child(4) { transition-delay: 0.2s; }
.why-card.fade-up:nth-child(5) { transition-delay: 0.25s; }
.why-card.fade-up:nth-child(6) { transition-delay: 0.3s; }

.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(20, 43, 81, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
    color: var(--gradient-end);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 22px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.fade-up:nth-child(1) { transition-delay: 0.05s; }
.faq-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.faq-item.fade-up:nth-child(3) { transition-delay: 0.15s; }
.faq-item.fade-up:nth-child(4) { transition-delay: 0.2s; }
.faq-item.fade-up:nth-child(5) { transition-delay: 0.25s; }
.faq-item.fade-up:nth-child(6) { transition-delay: 0.3s; }
.faq-item.fade-up:nth-child(7) { transition-delay: 0.35s; }

.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--primary);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/cta-bg.webp') no-repeat center center;
    background-size: cover;
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.85;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: #25d366;
    color: var(--white);
    border: 2px solid #25d366;
}

.btn-outline-white:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.locations {
    padding: 100px 0;
    background: var(--light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.location-item:hover {
    box-shadow: 0 5px 20px rgba(20, 43, 81, 0.1);
    transform: translateX(5px);
}

.location-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-pin {
    color: var(--gradient-end);
    flex-shrink: 0;
}

.location-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.location-arrow {
    color: var(--gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.location-item:hover .location-arrow {
    color: var(--gradient-end);
    transform: translateX(3px);
}

.process {
    padding: 100px 0;
    background: var(--primary);
}

.process .section-tag {
    color: var(--gradient-start);
}

.process .section-title {
    color: var(--white);
}

.process .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

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

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 30px rgba(250, 164, 26, 0.3);
}

.process-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
}

.process-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding: 0 10px;
}

.process-item.fade-up:nth-child(1) { transition-delay: 0.1s; }
.process-item.fade-up:nth-child(2) { transition-delay: 0.2s; }
.process-item.fade-up:nth-child(3) { transition-delay: 0.3s; }
.process-item.fade-up:nth-child(4) { transition-delay: 0.4s; }

.location-item.fade-up:nth-child(1) { transition-delay: 0.05s; }
.location-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.location-item.fade-up:nth-child(3) { transition-delay: 0.15s; }
.location-item.fade-up:nth-child(4) { transition-delay: 0.2s; }
.location-item.fade-up:nth-child(5) { transition-delay: 0.25s; }
.location-item.fade-up:nth-child(6) { transition-delay: 0.3s; }
.location-item.fade-up:nth-child(7) { transition-delay: 0.35s; }
.location-item.fade-up:nth-child(8) { transition-delay: 0.4s; }

@media (max-width: 992px) {
    .topbar {
        display: block;
        padding: 8px 0;
    }
    
    .topbar .container {
        justify-content: center;
    }
    
    .topbar-left {
        display: none;
    }
    
    .topbar-right {
        gap: 20px;
    }
    
    .topbar-social {
        width: 36px;
        height: 36px;
    }
    
    .header {
        top: 52px;
    }
    
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-card {
        height: 380px;
    }
    
    .header .container {
        padding: 0 20px;
    }
    
    .nav {
        position: fixed;
        top: 132px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .slider-dots {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .about-feature {
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-video-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .hero-desc-new {
        font-size: 15px;
    }
    
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-card {
        height: 320px;
    }
    
    .hero-card-content {
        padding: 20px;
        text-align: center;
    }
    
    .hero-card-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-card-link {
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .nav {
        top: 132px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .marquee-item {
        font-size: 1.1rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-secondary img {
        height: 180px;
    }
    
    .about-experience {
        padding: 20px 25px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }
    
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-desc {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .locations {
        padding: 60px 0;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .location-item {
        padding: 16px 20px;
    }
    
    .location-item span {
        font-size: 14px;
    }
    
    .process {
        padding: 60px 0;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-number {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        flex-direction: column;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-quote {
        display: none;
    }
    
    .testimonials-slider {
        min-height: 280px;
    }

    .service-card {
        padding: 0;
    }
    
    .service-img {
        height: 200px;
    }
    
    .service-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-title-new {
        font-size: 1.5rem;
    }
    
    .hero-desc-new {
        font-size: 14px;
    }
    
    .hero-buttons-new {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-buttons-new .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        height: 280px;
    }
    
    .hero-card-content h3 {
        font-size: 1.1rem;
    }
    
    .hero-card-content {
        text-align: center;
    }
    
    .hero-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-card-link {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }
}


.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 15px;
    color: var(--gray);
}

.contact-item-text a:hover {
    color: var(--gradient-end);
}

.contact-form-wrapper {
    background: var(--light);
    border-radius: var(--radius);
    padding: 45px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    background: var(--white);
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-end);
    box-shadow: 0 0 0 4px rgba(244, 117, 33, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%236c757d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-items {
        align-items: center;
    }
    
    .contact-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item-icon {
        width: 50px;
        height: 50px;
    }
}


.services-page {
    padding: 80px 0;
    background: var(--light);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 50px 0;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.vision-mission {
    padding: 100px 0;
    background: var(--light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

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

.vm-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.vm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.vm-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .vision-mission {
        padding: 60px 0;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vm-card {
        padding: 35px 25px;
    }
    
    .vm-icon {
        width: 75px;
        height: 75px;
    }
    
    .vm-icon svg {
        width: 32px;
        height: 32px;
    }
}


.gallery-page {
    padding: 80px 0;
    background: var(--light);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-page .gallery-item.fade-up:nth-child(1) { transition-delay: 0.05s; }
.gallery-page .gallery-item.fade-up:nth-child(2) { transition-delay: 0.1s; }
.gallery-page .gallery-item.fade-up:nth-child(3) { transition-delay: 0.15s; }
.gallery-page .gallery-item.fade-up:nth-child(4) { transition-delay: 0.2s; }
.gallery-page .gallery-item.fade-up:nth-child(5) { transition-delay: 0.25s; }
.gallery-page .gallery-item.fade-up:nth-child(6) { transition-delay: 0.3s; }
.gallery-page .gallery-item.fade-up:nth-child(7) { transition-delay: 0.35s; }
.gallery-page .gallery-item.fade-up:nth-child(8) { transition-delay: 0.4s; }
.gallery-page .gallery-item.fade-up:nth-child(9) { transition-delay: 0.45s; }
.gallery-page .gallery-item.fade-up:nth-child(10) { transition-delay: 0.5s; }
.gallery-page .gallery-item.fade-up:nth-child(11) { transition-delay: 0.55s; }
.gallery-page .gallery-item.fade-up:nth-child(12) { transition-delay: 0.6s; }
.gallery-page .gallery-item.fade-up:nth-child(13) { transition-delay: 0.65s; }
.gallery-page .gallery-item.fade-up:nth-child(14) { transition-delay: 0.7s; }
.gallery-page .gallery-item.fade-up:nth-child(15) { transition-delay: 0.75s; }
.gallery-page .gallery-item.fade-up:nth-child(16) { transition-delay: 0.8s; }
.gallery-page .gallery-item.fade-up:nth-child(17) { transition-delay: 0.85s; }
.gallery-page .gallery-item.fade-up:nth-child(18) { transition-delay: 0.9s; }
.gallery-page .gallery-item.fade-up:nth-child(19) { transition-delay: 0.95s; }
.gallery-page .gallery-item.fade-up:nth-child(20) { transition-delay: 1s; }
.gallery-page .gallery-item.fade-up:nth-child(21) { transition-delay: 1.05s; }

@media (max-width: 768px) {
    .gallery-page {
        padding: 50px 0;
    }
    
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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


.contact-map {
    width: 100%;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.contact-map iframe:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .contact-map iframe {
        height: 350px;
    }
}


.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--gradient-end);
    padding-left: 30px;
}

@media (max-width: 992px) {
    .nav-dropdown > .nav-link {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--light);
        border-radius: var(--radius);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 25px;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item-text {
        text-align: center;
    }
}


.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(20, 43, 81, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(20, 43, 81, 0.15);
}

.blog-img {
    display: block;
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 12px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a:hover {
    color: var(--gradient-end);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.blog-card.fade-up:nth-child(1) { transition-delay: 0.1s; }
.blog-card.fade-up:nth-child(2) { transition-delay: 0.2s; }
.blog-card.fade-up:nth-child(3) { transition-delay: 0.3s; }
.blog-card.fade-up:nth-child(4) { transition-delay: 0.4s; }
.blog-card.fade-up:nth-child(5) { transition-delay: 0.5s; }
.blog-card.fade-up:nth-child(6) { transition-delay: 0.6s; }

.blog-page {
    padding: 80px 0;
    background: var(--light);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .blog-grid,
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-page {
        padding: 50px 0;
    }
    
    .blog-grid,
    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-img {
        height: 200px;
    }
    
    .blog-body {
        padding: 20px;
    }
}


.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(20, 43, 81, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 43, 81, 0.2);
}

.scroll-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-progress-bg {
    fill: none;
    stroke: var(--light);
    stroke-width: 4;
}

.scroll-progress-bar {
    fill: none;
    stroke: url(#scrollGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    transition: stroke-dashoffset 0.1s ease;
}

.scroll-arrow {
    position: relative;
    z-index: 1;
    color: var(--primary);
    transition: color 0.3s ease;
}

.scroll-top:hover .scroll-arrow {
    color: var(--gradient-end);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}


.service-detail {
    padding: 80px 0;
    background: var(--white);
}

.service-content-area {
    background: var(--white);
}

.service-content-area h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gradient-start);
    line-height: 1.3;
}

.service-content-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.service-content-area h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.service-content-area h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content-area h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.service-content-area p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-content-area p:last-child {
    margin-bottom: 0;
}

.service-content-area strong {
    color: var(--dark);
    font-weight: 600;
}

.service-content-area ul,
.service-content-area ol {
    margin: 20px 0 25px 0;
    padding-left: 0;
    list-style: none;
}

.service-content-area ul li,
.service-content-area ol li {
    position: relative;
    padding: 12px 18px 12px 35px;
    margin-bottom: 10px;
    background: var(--light);
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
    transition: var(--transition);
}

.service-content-area ul li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
}

.service-content-area ol {
    counter-reset: item;
}

.service-content-area ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content-area ul li:hover,
.service-content-area ol li:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(20, 43, 81, 0.1);
    transform: translateX(5px);
}

.service-content-area blockquote {
    background: var(--light);
    border-left: 4px solid var(--gradient-end);
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--dark);
}

.service-content-area a {
    color: var(--gradient-end);
    font-weight: 500;
    text-decoration: underline;
}

.service-content-area a:hover {
    color: var(--gradient-start);
}

.service-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.service-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.service-content-area table th,
.service-content-area table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.service-content-area table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.service-content-area table tr:nth-child(even) {
    background: var(--light);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.service-detail-block {
    margin-bottom: 40px;
}

.service-detail-block:last-child {
    margin-bottom: 0;
}

.service-detail-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.service-detail-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.service-detail-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.service-detail-block p:last-child {
    margin-bottom: 0;
}

.service-detail-block.highlight {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gradient-end);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark);
    padding: 12px 18px;
    background: var(--light);
    border-radius: 8px;
    transition: var(--transition);
}

.check-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.check-list li:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(20, 43, 81, 0.1);
    transform: translateX(5px);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    padding: 18px 22px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-list li svg {
    color: var(--gradient-end);
    flex-shrink: 0;
}

.service-list li:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(20, 43, 81, 0.12);
    transform: translateX(8px);
}

.service-list li:hover svg {
    color: var(--gradient-start);
}

.service-detail-sidebar {
    position: sticky;
    top: 150px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 43, 81, 0.12);
    margin-bottom: 30px;
}

.sidebar-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sidebar-content {
    padding: 30px;
}

.sidebar-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.sidebar-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
    margin-bottom: 12px;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.sidebar-services {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
}

.sidebar-services h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--white);
}

.sidebar-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-services ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.sidebar-services ul li a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-sidebar {
        position: static;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding: 50px 0;
    }
    
    .service-detail-content h2 {
        font-size: 1.3rem;
    }
    
    .service-content-area h1 {
        font-size: 1.5rem;
    }
    
    .service-content-area h2 {
        font-size: 1.25rem;
        margin-top: 25px;
    }
    
    .service-content-area h3 {
        font-size: 1.1rem;
    }
    
    .service-content-area p {
        font-size: 15px;
    }
    
    .service-content-area ul li,
    .service-content-area ol li {
        padding: 10px 15px 10px 30px;
        font-size: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .sidebar-content {
        padding: 25px;
    }
    
    .sidebar-services {
        padding: 25px;
    }
}


.location-detail {
    padding: 80px 0;
    background: var(--white);
}

.location-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-block {
    margin-bottom: 50px;
}

.location-block:last-child {
    margin-bottom: 0;
}

.location-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.location-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.location-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    padding: 18px 22px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.location-features li svg {
    color: var(--gradient-end);
    flex-shrink: 0;
}

.location-features li:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(20, 43, 81, 0.12);
    transform: translateX(8px);
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.location-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    background: var(--light);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    transition: var(--transition);
}

.location-service-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 117, 33, 0.3);
}

.location-cta-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.location-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.location-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.location-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .location-detail {
        padding: 50px 0;
    }
    
    .location-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-cta-box {
        padding: 35px 25px;
    }
    
    .location-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .location-services-grid {
        grid-template-columns: 1fr;
    }
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.blog-detail-category {
    background: var(--gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.blog-detail-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.blog-detail {
    padding: 80px 0;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-detail-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.blog-detail-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 40px;
}

.blog-detail-body h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 30px 0 15px;
}

.blog-detail-body h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 25px 0 12px;
}

.blog-detail-body p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-detail-body ul {
    margin: 15px 0 20px 20px;
}

.blog-detail-body ul li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-detail-body strong {
    color: var(--dark);
}

.blog-detail-share {
    padding: 30px 40px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-detail-share span {
    font-weight: 600;
    color: var(--dark);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
}

.widget-title {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gradient-start);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.related-post:hover {
    background: var(--light);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-post-info h4 {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-info span {
    font-size: 12px;
    color: var(--gray);
}

.sidebar-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.sidebar-cta .btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.sidebar-cta .btn-whatsapp:hover {
    background: #20bd5a;
}

@media (max-width: 992px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-sidebar {
        position: static;
        order: 2;
    }
    
    .blog-detail-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 50px 0;
    }
    
    .blog-detail-body {
        padding: 25px;
    }
    
    .blog-detail-body h2 {
        font-size: 20px;
    }
    
    .blog-detail-body h3 {
        font-size: 18px;
    }
    
    .blog-detail-share {
        padding: 20px 25px;
        flex-wrap: wrap;
    }
}


.form-message {
    display: none;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 24px;
    animation: popIn 0.5s ease;
}

.form-message.show {
    display: flex;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-message.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.form-message.success .form-message-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.form-message.success .form-message-text strong,
.form-message.success .form-message-text span {
    color: white;
}

.form-message.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.form-message.error .form-message-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.form-message.error .form-message-text strong,
.form-message.error .form-message-text span {
    color: white;
}

.form-message-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-message-icon svg {
    width: 28px;
    height: 28px;
}

.form-message-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-message-text strong {
    font-size: 17px;
    font-weight: 600;
}

.form-message-text span {
    font-size: 14px;
    opacity: 0.9;
}


.error-page {
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--light);
    margin-top: 130px;
}

.error-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    color: var(--gradient-end);
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-title {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.error-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.error-desc {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.error-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.error-contact {
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.error-contact p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.error-contact a {
    font-size: 20px;
    font-weight: 700;
    color: var(--gradient-end);
}

.error-contact a:hover {
    color: var(--gradient-start);
}

@media (max-width: 768px) {
    .error-title {
        font-size: 5rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-icon svg {
        width: 80px;
        height: 80px;
    }
}
