/*
   Frontend Stylesheet - PT Ibtara Makmur Abadi
   Theme: Luxury Navy & Deep Gold Accents (Transport & General Consultant)
*/

:root {
    --primary: #c29b38; /* Luxury Gold */
    --primary-dark: #8c6b1b;
    --primary-light: #e6cb7e;
    --accent-gold: linear-gradient(135deg, #e6cb7e 0%, #c29b38 50%, #8c6b1b 100%);
    --navy: #0b132b; /* Deep Navy */
    --navy-light: #1c2541;
    --navy-lighter: #3a506b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 15px 35px -10px rgba(11, 19, 43, 0.08);
    --shadow-lg: 0 30px 60px -15px rgba(11, 19, 43, 0.12);
    --shadow-gold: 0 15px 30px rgba(194, 155, 56, 0.25);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 5px;
    border: 2px solid var(--navy);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 600;
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header .sub {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
    opacity: 0;
}

.btn:hover::after {
    left: 150%;
    opacity: 1;
    transition: all 0.8s ease-in-out;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(194, 155, 56, 0.35);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 19, 43, 0.2);
}

.btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 19, 43, 0.3);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 24px 0;
}

.header.scrolled {
    background-color: rgba(11, 19, 43, 0.96);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

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

.nav-menu a:hover::after,
.nav-menu li.active a::after {
    width: 100%;
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.85)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2075&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-content .sub {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1.4s ease forwards;
}

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

/* Intro Services Section (Beranda) */
.intro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.04);
    border: 1px solid rgba(194, 155, 56, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    z-index: -1;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 155, 56, 0.15);
    border-color: transparent;
}

.service-card .icon-box {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    background-color: rgba(194, 155, 56, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(248, 250, 252, 0.7);
}

.service-card .readmore {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .readmore i {
    transition: var(--transition);
}

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

/* Service Card with Image styling (Opsi 2) */
.service-card.image-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.service-card.image-card::before {
    display: none;
}

.service-card.image-card::after {
    display: none;
}

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

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon-badge {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(194, 155, 56, 0.3);
    border: 3px solid var(--white);
    z-index: 2;
    transition: var(--transition);
}

.service-card.image-card:hover .service-icon-badge {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 12px 25px rgba(194, 155, 56, 0.5);
    background: var(--navy);
    color: var(--primary-light);
}

.service-card-content {
    padding: 30px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-card.image-card .readmore {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-card.image-card .readmore i {
    transition: var(--transition);
}

.service-card.image-card:hover .readmore i {
    transform: translateX(5px);
}

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

/* Explicitly override hover text colors to prevent text disappearing */
.service-card.image-card:hover h3 {
    color: var(--primary) !important;
}

.service-card.image-card:hover p {
    color: var(--text-muted) !important;
}

/* About Intro Section */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-img {
    position: relative;
}

.about-intro-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-intro-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    top: 20px;
    left: -20px;
    border-radius: var(--radius);
    z-index: -1;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.25;
}

.about-intro-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

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

/* Stats section */
.stats-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #16223f 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 155, 56, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h4 {
    font-size: 56px;
    font-weight: 800;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: #f1f5f9;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}

.testimonial-bubble {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.04);
    border: 1px solid rgba(194, 155, 56, 0.06);
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(11, 19, 43, 0.08);
    border-color: rgba(194, 155, 56, 0.15);
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--white) transparent;
    display: block;
    width: 0;
}

.testimonial-bubble p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--primary);
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

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

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 50px;
}

/* Partners Logos Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.partner-logo {
    opacity: 0.6;
    transition: var(--transition);
    max-height: 45px;
    filter: grayscale(1);
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
}

/* News Section (Home & List) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(11, 19, 43, 0.1);
    border-color: rgba(194, 155, 56, 0.25);
}

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

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.news-card-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.news-card-link i {
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: var(--navy);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

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

.footer-logo img {
    height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 12px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-info-list li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 4px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Pages Subheader / Breadcrumbs */
.pages-subheader {
    background: linear-gradient(rgba(11, 19, 43, 0.85), rgba(11, 19, 43, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    padding: 150px 0 80px 0;
    color: var(--white);
}

.pages-subheader h1 {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a {
    color: var(--primary);
}

/* Detail page layout */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.detail-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.detail-img {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.detail-desc p {
    margin-bottom: 20px;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.widget-menu {
    list-style: none;
}

.widget-menu li {
    margin-bottom: 10px;
}

.widget-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: #f8fafc;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.widget-menu a:hover,
.widget-menu li.active a {
    background-color: var(--navy);
    color: var(--white);
}

/* Contact Page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-card-info {
    background-color: var(--navy);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-card-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card-info p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 40px;
}

.contact-form-panel {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-panel h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 155, 56, 0.15);
}

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

.map-container {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-intro-img::after {
        display: none;
    }
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 110px;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--navy);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu a {
        color: var(--white);
        font-size: 18px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .stats-banner-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-card-info, .contact-form-panel {
        padding: 30px;
    }
}

/* Floating Customer Service Widget */
.floating-cs-container {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cs-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cs-container.active .cs-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
}

.cs-btn:hover {
    transform: scale(1.1);
}

.cs-phone {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.cs-email {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cs-telegram {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.cs-whatsapp {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.cs-label {
    position: absolute;
    right: 65px;
    background-color: var(--navy);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.cs-btn:hover .cs-label {
    opacity: 1;
    visibility: visible;
    right: 58px;
}

.cs-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: var(--white);
    background: linear-gradient(135deg, #c29b38, #a17c26); /* Luxury Gold theme match */
    box-shadow: 0 6px 25px rgba(194, 155, 56, 0.4);
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.cs-trigger:focus {
    outline: none;
}

.cs-trigger:hover {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 8px 30px rgba(194, 155, 56, 0.6);
}

.floating-cs-container.active .cs-trigger {
    background: linear-gradient(135deg, #374151, #1f2937);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.pulse-ring {
    content: '';
    position: absolute;
    left: -6px;
    top: -6px;
    right: -6px;
    bottom: -6px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    animation: cs-pulse 2s infinite;
    opacity: 0;
    pointer-events: none;
}

@keyframes cs-pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* --- DYNAMIC ADDITIONS: DARK MODE, GALLERY, SEARCH, WHATSAPP --- */

/* Dark Mode Theme Variables & Class Selection */
body.dark-theme {
    --bg-light: #070d19;
    --white: #0b132b;
    --text-dark: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(58, 80, 107, 0.4);
    --navy: #f8fafc;
    --navy-light: #0f172a;
    --navy-lighter: #1e293b;
    --shadow-md: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

body.dark-theme .header {
    background-color: rgba(7, 13, 25, 0.95);
    border-bottom: 1px solid var(--border-color);
}
body.dark-theme .header.scrolled {
    background-color: #070d19;
}
body.dark-theme .service-card,
body.dark-theme .testimonial-slide,
body.dark-theme .news-card,
body.dark-theme .footer,
body.dark-theme .custom-page-container,
body.dark-theme .contact-card,
body.dark-theme .gallery-card,
body.dark-theme .search-results-panel {
    background-color: #0f172a;
}
body.dark-theme .testimonial-bubble {
    background-color: #1e293b;
    border-color: #334155;
    color: #f1f5f9;
}
body.dark-theme .testimonial-bubble::after {
    border-top-color: #1e293b;
}
body.dark-theme .search-form-header input {
    background: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
}
body.dark-theme .search-form-header input:focus {
    background: #1e293b;
}

/* Theme Toggler Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.theme-toggle-btn:hover {
    background: rgba(194, 155, 56, 0.1);
    transform: scale(1.1);
}

/* Search Form Header */
.search-form-header {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 180px;
}
.search-form-header input {
    width: 100%;
    padding: 6px 30px 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}
.search-form-header input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-form-header input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}
.search-form-header button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 13px;
}

/* WhatsApp Chat Popup Box */
.wa-chat-popup {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 340px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #fff;
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-chat-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.wa-chat-header {
    background: #075e54;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.wa-chat-avatar {
    position: relative;
    width: 45px;
    height: 45px;
}
.wa-chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.wa-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    background: #4caf50;
    border: 2px solid #075e54;
    border-radius: 50%;
}
.wa-chat-header-info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
.wa-chat-header-info p {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin: 0;
}
.wa-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}
.wa-chat-body {
    background: #e5ddd5;
    padding: 20px;
    height: 160px;
    overflow-y: auto;
}
.wa-message-bubble {
    background: #fff;
    padding: 10px 12px;
    border-radius: 0 10px 10px 10px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wa-sender {
    font-size: 11px;
    font-weight: 600;
    color: #128c7e;
    margin-bottom: 3px;
}
.wa-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}
.wa-time {
    display: block;
    text-align: right;
    font-size: 9px;
    color: #999;
    margin-top: 4px;
}
.wa-chat-footer {
    padding: 15px;
    background: #f0f0f0;
    text-align: center;
}
.wa-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: background 0.3s;
}
.wa-send-btn:hover {
    background: #128c7e;
}

/* Gallery Visual Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.gallery-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.8) 0%, rgba(11, 19, 43, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h3 {
    color: var(--white);
    font-size: 18px;
    margin: 0;
}
.gallery-info {
    padding: 20px;
}
.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    transition: var(--transition);
}
.gallery-card:hover .gallery-info h3 {
    color: var(--primary);
}
.gallery-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Lightbox Modal CSS */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(7, 13, 25, 0.95);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid var(--primary);
}
.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: var(--primary);
}
