/* === GENERAL === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--primary); color: #fff; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; }
section { padding: 90px 0; }

/* === NAVBAR === */
.navbar {
    padding: 12px 0;
    transition: all 0.4s ease;
    background: #fff;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 8px 0;
}

.nav-logo { max-height: 42px; transition: all 0.3s; }

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 6px 10px;
}

.nav-phone {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone i { color: var(--accent); margin-right: 4px; }

.btn-whatsapp-nav {
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-whatsapp-nav:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
}

/* === HERO SECTION === */
.hero-section {
    padding: 0;
    margin-top: 68px;
    position: relative;
}

.hero-slide {
    height: calc(100vh - 68px);
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Banner mode - full image, no crop */
.hero-slide-banner {
    height: calc(100vh - 68px);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, rgba(10,36,60,0.88) 0%, rgba(0,0,0,0.55) 50%, rgba(10,36,60,0.82) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.2);
    border: 1px solid rgba(201,169,110,0.5);
    color: #dfc68a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    font-size: 0.9rem;
    animation: phonePulse 1.5s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #dfc68a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    margin: 0 auto 16px;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.hero-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.hero-service-item {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-service-item:hover {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.3);
    transform: translateX(4px);
}

.hero-service-item i {
    font-size: 1.15rem;
    color: #dfc68a;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.hero-service-item span {
    flex: 1;
}

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

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 36px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-whatsapp-hero {
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 15px 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp-hero:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.hero-section .carousel-indicators {
    margin-bottom: 25px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.hero-section .carousel-indicators button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
}

.hero-section .carousel-control-prev { left: 20px; }
.hero-section .carousel-control-next { right: 20px; }

/* === BUTTONS === */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accent:hover {
    filter: brightness(1.1);
    color: #fff;
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.section-header.text-center .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #888;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 12px auto 0;
}

/* === ALTERNATING BACKGROUNDS === */
.section-services { background: #fff; }
.section-whyus { background: var(--light-bg); }
.section-feature { background: #fff; }
.section-products { background: var(--light-bg); }
.section-counter { background: #fff; }
.section-areas { background: var(--light-bg); }
.section-projects { background: #fff; }
.section-blog { background: var(--light-bg); }

/* === SERVICE CARDS === */
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.05));
}

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

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

.service-img-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-circle i { font-size: 2rem; color: #fff; }

.service-body { padding: 24px; }

.service-body h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1.1rem;
}

.service-body p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card-link:hover { color: inherit; }

.service-card .service-body .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-card .service-body .service-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.service-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 12px;
    transition: gap 0.3s;
}

.service-card:hover .service-link-text { gap: 10px; }

.service-card.detailed { border: 1px solid rgba(0,0,0,0.06); }
.service-card.detailed .service-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

/* === WHY US CARDS (Vertical centered) === */
.whyus-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    height: 100%;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.whyus-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.whyus-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whyus-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.whyus-text h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.whyus-text p {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* === FEATURE / ABOUT SECTION (Light with accent) === */
.feature-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.98rem;
}

.feature-image-wrap {
    position: relative;
}

.feature-image-wrap img {
    border-radius: 16px;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.feature-image-wrap::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
}

.feature-experience {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.exp-text {
    display: block;
    font-size: 0.8rem;
    margin-top: 4px;
    opacity: 0.9;
}

.feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.highlight-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2px;
}

.highlight-item h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--text);
}

.highlight-item p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0;
}

.btn-feature {
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 13px 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-feature:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-list li i { color: var(--primary); font-size: 1.1rem; }

.btn-outline-feature {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
}

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

.feature-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark-bg));
    padding: 150px 0 70px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.page-hero .breadcrumb { margin-bottom: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* === PRODUCT CARDS === */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

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

.product-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-info { padding: 16px; }

.product-info h5 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.placeholder-img {
    height: 200px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img i { font-size: 3rem; color: #ccc; }

/* === PRODUCT FILTERS === */
.product-filters {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    background: var(--light-bg);
    border-radius: 12px;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s;
    cursor: pointer;
}

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

/* === BLOG CARDS === */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

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

.blog-img { height: 220px; overflow: hidden; }

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

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

.blog-content { padding: 24px; }

.blog-date {
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-content h5 a {
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s;
}

.blog-content h5 a:hover { color: var(--primary); }

.blog-content p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.read-more i { transition: transform 0.3s; }
.read-more:hover { color: var(--accent); }
.read-more:hover i { transform: translateX(4px); }

.blog-detail .blog-meta span { margin-right: 20px; color: #666; }
.blog-content-detail { line-height: 1.8; font-size: 1.05rem; }

/* === COUNTER (Card-based, light) === */
.counter-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.counter-card:hover {
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.counter-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

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

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
}

.counter-card p {
    font-size: 0.92rem;
    color: #888;
    margin-top: 4px;
    margin-bottom: 0;
}

/* old counter fallback */
.counter-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.counter-item p { font-size: 1rem; opacity: 0.85; margin-top: 5px; }

/* === REFERENCES === */
.reference-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.reference-item img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s;
}

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

.ref-name { font-weight: 600; color: var(--primary); font-size: 0.85rem; }

.reference-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

.reference-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.reference-card img { max-height: 80px; margin-bottom: 15px; }
.reference-card h6 { font-weight: 600; color: var(--primary); }

.ref-placeholder {
    width: 80px; height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.ref-placeholder i { font-size: 2rem; color: #ccc; }
.ref-link { color: var(--secondary); font-size: 0.85rem; }

/* === SERVICE AREAS === */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 145px;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background: var(--primary);
}

.area-card:hover i,
.area-card:hover span {
    color: #fff;
}

.area-card i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color 0.3s;
}

.area-card span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.3s;
}

/* === RECENT PROJECTS === */
.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    opacity: 0;
    transition: opacity 0.3s;
}

.project-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.project-card:hover .project-overlay {
    opacity: 1;
}

/* === PROJECT MODAL === */
#projectModal .modal-dialog { max-width: 900px; }
#projectModal .modal-content { background: rgba(0,0,0,0.9); border: none; border-radius: 16px; }
#projectModal .modal-body { padding: 20px; }
#projectModal .modal-body img { max-height: 75vh; object-fit: contain; width: 100%; border-radius: 8px; }
#projectModal .btn-close { filter: invert(1); opacity: 0.8; z-index: 10; }

/* === CTA === */
.section-cta {
    background: var(--primary);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -15%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.section-cta .container { position: relative; z-index: 1; }
.section-cta h2 { font-size: 2.5rem; font-weight: 700; }
.section-cta p { font-size: 1.15rem; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* === ABOUT === */
.about-image-wrapper { position: relative; }

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

.about-image-wrapper img { position: relative; z-index: 1; }

.about-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

.about-placeholder i { font-size: 4rem; }
.about-placeholder.large { height: 400px; }
.about-text { line-height: 1.8; color: #555; }
.page-content { line-height: 1.8; color: #555; }

/* === CONTACT === */
.contact-info-box {
    background: var(--primary);
    border-radius: 16px;
    padding: 35px 25px;
    color: #fff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.contact-icon i { font-size: 1.3rem; color: var(--accent); }
.contact-info-item h6 { margin-bottom: 3px; font-weight: 600; }
.contact-info-item p { margin-bottom: 0; opacity: 0.8; font-size: 0.9rem; }
.contact-info-item a { color: rgba(255,255,255,0.8); }
.contact-info-item a:hover { color: #fff; }

.contact-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.contact-form-box .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-form-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-whatsapp:hover { background: #1da851; color: #fff; }
.map-section iframe { width: 100%; height: 400px; border: 0; }

/* === FOOTER === */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.7);
}

.footer-top { padding: 70px 0 40px; }
.footer-logo { max-height: 50px; }

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-links a::before {
    content: '\203A';
    margin-right: 8px;
    color: var(--accent);
}

.footer-links a:hover { color: var(--accent); padding-left: 5px; }

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

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

.footer-contact i { color: var(--accent); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #fff; }

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

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

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

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    padding: 12px 20px;
}

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

.footer-newsletter .form-control:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    box-shadow: none;
    color: #fff;
}

.footer-newsletter .btn { border-radius: 10px; padding: 12px 25px; }

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

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    animation: whatsappPulse 2s infinite;
    transition: all 0.3s;
}

.whatsapp-float:hover { color: #fff; transform: scale(1.1); }

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === SCROLL TOP === */
.scroll-to-top {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.scroll-to-top:hover { background: var(--secondary); transform: translateY(-3px); }
.scroll-to-top.show { display: flex; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    section { padding: 60px 0; }
    .hero-section { margin-top: 60px; }
    .hero-slide, .hero-slide-banner { height: calc(100vh - 60px); }
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .navbar-collapse .nav-link { color: var(--text) !important; }
    .nav-contact { display: none !important; }
    .section-cta { padding: 70px 0; }
    .feature-content { margin-bottom: 30px; }
    .feature-image-wrap::before { display: none; }
    .feature-image-wrap img { height: 350px; }
    .feature-experience { right: 10px; bottom: -15px; }
    .feature-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    section { padding: 50px 0; }
    .hero-section { margin-top: 56px; }
    .hero-slide, .hero-slide-banner { height: calc(100vh - 56px); }
    .hero-slide { background-position: 25% center; }
    .hero-title { font-size: 3.5rem; }
    .hero-desc { font-size: 1.1rem; letter-spacing: 1px; }
    .hero-service-list { gap: 6px 14px; }
    .hero-service-item { font-size: 0.9rem; padding: 8px 12px; }
    .hero-badge { font-size: 0.8rem; padding: 6px 18px; }
    .section-title { font-size: 1.8rem; }
    .section-cta h2 { font-size: 1.8rem; }
    .counter-number { font-size: 2.2rem; }
    .counter-card { padding: 24px 16px; }
    .page-hero { padding: 120px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }
    .about-image-wrapper::before { display: none; }
    .footer-top { padding: 50px 0 30px; }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next { display: none; }
    .area-card { padding: 14px 20px; min-width: 140px; }
    .project-card img { height: 200px; }
    .feature-image-wrap img { height: 280px; }
    .feature-experience { padding: 16px 20px; }
    .exp-number { font-size: 1.6rem; }
}

@media (max-width: 575px) {
    .hero-section { margin-top: 52px; }
    .hero-slide, .hero-slide-banner { height: calc(100vh - 52px); min-height: 400px; }
    .hero-slide { background-position: 20% center; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 0.9rem; letter-spacing: 0.5px; }
    .hero-service-list { grid-template-columns: 1fr; gap: 5px; max-width: 320px; }
    .hero-service-item { font-size: 0.82rem; padding: 7px 12px; }
    .hero-badge { font-size: 0.75rem; padding: 5px 14px; margin-bottom: 12px; }
    .hero-divider { margin-bottom: 12px; }
    .btn-hero-primary, .btn-whatsapp-hero { padding: 12px 24px; font-size: 0.95rem; }
    .contact-form-box { padding: 20px; }
    .section-cta { padding: 50px 0; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .feature-highlights { gap: 10px; }
}

/* === SERVICE DETAIL PAGE === */
.service-detail-section { padding: 60px 0 80px; }

.service-detail-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
}

.service-detail-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.service-detail-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.service-detail-body ul,
.service-detail-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-detail-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.service-detail-body strong {
    color: var(--text);
}

.service-detail-body p {
    margin-bottom: 16px;
}

.service-cta-box {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
}

.service-cta-box h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.service-cta-box p {
    color: #777;
    margin-bottom: 0;
}

.service-cta-box .btn { margin-top: 8px; }

/* Sidebar */
.service-sidebar { position: sticky; top: 100px; }

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h5 i { color: var(--primary); }

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

.sidebar-service-list li { border-bottom: 1px solid #f0f0f0; }
.sidebar-service-list li:last-child { border-bottom: none; }

.sidebar-service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sidebar-service-list a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.sidebar-service-list a i:first-child {
    font-size: 1.1rem;
    color: var(--primary);
    width: 20px;
}

.sidebar-service-list a span { flex: 1; }

.sidebar-service-list a i.bi-chevron-right {
    font-size: 0.8rem;
    color: #ccc;
    transition: color 0.3s;
}

.sidebar-service-list a:hover i.bi-chevron-right { color: var(--primary); }

.sidebar-contact p {
    color: #777;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.sidebar-phone,
.sidebar-email {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-phone:hover,
.sidebar-email:hover { color: var(--primary); }

.sidebar-phone i,
.sidebar-email i {
    font-size: 1.1rem;
    color: var(--primary);
}

.sidebar-cta-card {
    background: var(--primary);
    border-color: var(--primary);
}

.sidebar-cta-card h5 { color: #fff; }
.sidebar-cta-card h5 i { color: rgba(255,255,255,0.7); }
.sidebar-cta-card p { color: rgba(255,255,255,0.85); }

.sidebar-cta-card .btn-primary-custom {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

.sidebar-cta-card .btn-primary-custom:hover {
    background: var(--light-bg);
}

@media (max-width: 991px) {
    .service-detail-img img { height: 280px; }
    .service-sidebar { position: static; margin-top: 40px; }
    .service-cta-box .text-md-end { text-align: left !important; margin-top: 16px; }
}
