/* ========== VARIABLES ========== */
:root {
    --primary: #0F172A;      /* Midnight Blue */
    --primary-light: #1E293B;
    --accent: #D4AF37;       /* Champagne Gold */
    --accent-hover: #C5A028;
    --accent-light: #FDFBF4;
    --bg-light: #FFFFFF;
    --bg-gray: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #475569;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
    --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.25);
}

/* ========== BASE STYLES ========== */
html {
    scroll-behavior: smooth;
    font-size: 14px; /* Base font size reduced for compact layout */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

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

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-primary-dark {
    background-color: var(--primary);
    color: white;
}

/* Clear, centered section titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ========== BUTTONS ========== */
/* User-friendly buttons: large, high contrast, clear text */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    font-size: 1.05rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.4);
}

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

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

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.4);
}

/* ========== HEADER ========== */
.header-section {
    transition: all 0.3s ease;
    padding: 20px 0;
    background: white;
    box-shadow: var(--shadow-sm);
}

.header-section.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    margin: 0 10px;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    padding-top: 110px;
    padding-bottom: 75px;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 8px);
}

/* Decorative elements */
.shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.badge-premium {
    display: inline-block;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.trust-badges {
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.trust-item {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.trust-item i {
    color: var(--whatsapp);
    font-size: 1.2rem;
}

/* ========== ABOUT SECTION ========== */
#about h2 {
    font-size: 2rem;
}

#about p {
    font-size: 1.05rem;
}

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

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
    min-width: 180px;
}

.exp-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-features li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 12px;
    background: var(--accent-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== SERVICES SECTION ========== */
/* Clear, standard cards that are obvious to click for non-tech users */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

.service-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-card .btn {
    width: 100%;
    font-size: 0.9rem;
    margin: auto;
}

/* ========== WHY CHOOSE US ========== */
.why-us-section {
    background-color: var(--primary);
    color: white;
}

.why-us-section .section-title h2 {
    color: white;
}

.why-us-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--accent);
    color: var(--primary);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin: 0;
}

/* ========== GALLERY SECTION ========== */
/* Simple grid for ease of use, with large clear images */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.gallery-icon {
    color: var(--accent);
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ========== HOW IT WORKS ========== */
.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '\f30b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40px;
    right: -20px;
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.5;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: white;
    color: var(--primary);
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    border: 3px solid var(--accent);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* ========== REVIEWS SECTION ========== */
.review-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 20px 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--bg-gray);
    z-index: 0;
}

.review-stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.reviewer-info h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}

.reviewer-info span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ========== FAQ SECTION ========== */
.accordion-item {
    border: 1px solid rgba(0,0,0,0.05) !important;
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 20px;
    color: var(--primary);
    background: white;
}

.accordion-body {
    font-size: 0.95rem;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--accent-light);
    box-shadow: none;
}

.accordion-button::after {
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-body {
    padding: 20px 25px 25px;
    color: var(--text-muted);
    background: white;
    font-size: 1.05rem;
}

/* ========== CONTACT SECTION ========== */
.contact-info-card {
    background: var(--primary);
    color: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info-card h2 {
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-details h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: white;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--primary-light);
    color: white;
    padding: 80px 0 20px;
}

.footer-brand .logo-icon {
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

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

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    color: white;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: var(--accent);
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

/* ========== FLOATING ACTION BUTTONS ========== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
    color: white;
}

.fab-whatsapp {
    background: var(--whatsapp);
}

.fab-call {
    background: var(--primary);
    border: 2px solid var(--accent);
}

.fab-location { background: var(--accent); color: var(--primary); border: 2px solid var(--primary); } .fab-location:hover { color: var(--primary); }

/* Lightbox Override */
.lb-dataContainer {
    width: 100% !important;
    padding: 0 !important;
}
.lb-data .lb-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.95) url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/images/close.png') center center no-repeat !important;
    background-size: 20px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    opacity: 1 !important;
    display: block !important;
    float: none !important;
    margin: 0 !important;
    z-index: 100000 !important;
}
.lb-data .lb-details {
    display: none !important;
}

.gallery-item {
    height: 160px;
}
