/* ===================================
   NEW CLIENT SITE — SHANTHAVENTURES STYLE
   Pure HTML / CSS / JS — Netlify Ready
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #f7c51e;
    --gold-dark: #e6b400;
    --dark-1: #101010;
    --dark-2: #1c1c1c;
    --dark-3: #262626;
    --dark-4: #333333;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-body: #444444;
    --text-muted: #888888;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.3;
    font-family: 'ZCOOL XiaoWei', serif;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-1);
    font-weight: 400;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: var(--gold);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.light-header h2 {
    color: var(--white);
}

.light-header h2::after {
    background: var(--gold);
}

.light-label {
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-1);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(247, 197, 30, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 197, 30, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark-3);
    border-color: var(--dark-4);
}

.btn-outline-dark:hover {
    background: var(--dark-1);
    color: var(--white);
    border-color: var(--dark-1);
    transform: translateY(-2px);
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.header .logo-img {
    height: 80px;
    max-width: none;
}

.footer-logo .logo-img {
    height: 44px;
    max-width: 180px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-1);
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    letter-spacing: 0.3px;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-1);
    font-family: 'ZCOOL XiaoWei', serif;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding-bottom: 3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dark-1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--dark-1);
    border-radius: 2px;
    transition: all var(--transition);
}

.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(5px, -5px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Hero background — replace with your own image */
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    background-color: var(--dark-2);
    /* fallback */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(16, 16, 16, 0.78) 0%,
            rgba(26, 35, 50, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 1rem;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.75rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.6;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--light-bg);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: default;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.service-card h3 {
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-1);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: var(--dark-1);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-family: 'ZCOOL XiaoWei', serif;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    background: var(--gold);
}

.testimonials-section .section-label {
    color: var(--dark-3);
}

.testimonials-section .section-header h2 {
    color: var(--dark-1);
}

.testimonials-section .section-header h2::after {
    background: var(--dark-1);
}

.testimonialSwiper {
    padding: 0 1rem 3.5rem !important;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.stars {
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.75rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-1);
    font-family: 'Poppins', sans-serif;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Swiper overrides  */
.swiper-pagination-bullet {
    background: var(--dark-3);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--dark-1);
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--dark-1) !important;
    background: rgba(255, 255, 255, 0.6);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem !important;
    font-weight: 800;
}

/* ===========================
   PROJECTS (DARK SECTION)
   =========================== */
.dark-section {
    background: var(--dark-2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-item:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-tag {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: var(--gold);
    color: var(--dark-1);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    transform: translateY(8px);
    transition: transform var(--transition);
}

.project-item:hover .project-tag {
    transform: translateY(0);
}

/* ===========================
   PACKAGES / PRICING PREVIEW
   =========================== */
.packages-preview {
    background: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.03);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--dark-1);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    border-bottom-left-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
}

.package-header {
    padding: 2rem;
    color: var(--white);
}

.package-header.silver {
    background: linear-gradient(135deg, #5a6a7a, #7a8a9a);
}

.package-header.gold {
    background: linear-gradient(135deg, #c9960a, var(--gold));
    color: var(--dark-1);
}

.package-header.diamond {
    background: linear-gradient(135deg, #1a2332, #2c5282);
}

.package-header h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.package-features {
    padding: 1.75rem;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
    border: none;
}

.package-features li span {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1rem;
}

.package-card .btn {
    margin: 0 1.75rem 1.75rem;
}

.packages-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-3) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark-1);
    padding: 3.5rem 0 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 420px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-top: 0.75rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 130px;
    padding-top: 0.25rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}


/* ===========================
   PAGE HEADER (inner pages)
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-3) 100%);
    padding: 9rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 1.25rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 3rem;
}

.about-text h2 {
    font-size: 2.25rem;
    color: var(--dark-1);
    margin-bottom: 1.25rem;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-highlight {
    background: var(--gold);
    color: var(--dark-1);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    display: inline-block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-1);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--transition);
    display: flex;
    gap: 1.5rem;
}

.service-detail-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark-1);
    margin-bottom: 0.75rem;
}

.service-detail-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-includes li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding-left: 1.25rem;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

/* ===========================
   PRICING PAGE
   =========================== */
.pricing-table-section {
    background: var(--light-bg);
}

.pricing-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-full-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-full-card.recommended {
    border-color: var(--gold);
}

.recommended-badge {
    background: var(--gold);
    color: var(--dark-1);
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem;
}

.pricing-full-header {
    padding: 2rem;
    background: var(--dark-1);
    color: var(--white);
}

.pricing-full-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-full-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--gold);
}

.pricing-full-price span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.pricing-full-features {
    padding: 1.5rem;
    flex: 1;
    text-align: left;
}

.pricing-full-features li {
    display: flex;
    flex-direction: column;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.pricing-full-features li:last-child {
    border: none;
}

.feature-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.feature-val {
    color: var(--dark-1);
    font-weight: 500;
}

.pricing-full-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--dark-1), var(--dark-3));
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.contact-info-card>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(247, 197, 30, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.contact-social .social-link:hover {
    background: var(--gold);
    color: var(--dark-1);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--dark-1);
    margin-bottom: 0.5rem;
}

.contact-form-card>p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-1);
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: #e53e3e;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-1);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(247, 197, 30, 0.15);
}

.form-input.error {
    border-color: #e53e3e;
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

.error-message {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: 0.4rem;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background: #38a169;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.success-message.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* ===========================
   PROJECTS PAGE (full)
   =========================== */
.projects-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all var(--transition);
    animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
    animation: none;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75);
    }
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    z-index: 1000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-1);
    color: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark-1);
    transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .services-grid,
    .projects-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-6px);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        transition: right var(--transition);
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .services-grid,
    .projects-grid,
    .projects-full-grid,
    .packages-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:last-child {
        border: none;
    }

    .pricing-full-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-social {
        justify-content: center;
    }

    .footer-links nav a:hover {
        padding-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .testimonialSwiper {
        padding-bottom: 3rem !important;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.75rem;
    }
}

/* ===========================
   VALUE PROPOSITIONS SECTION
   =========================== */
.value-props-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.value-prop-card:hover {
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.value-prop-card h3 {
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-1);
    margin-bottom: 0.75rem;
}

.value-prop-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   ABOUT HOME SECTION
   =========================== */
.about-home-section {
    background: var(--white);
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-home-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-1), var(--dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    font-size: 5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.about-home-text .section-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.about-home-text h2 {
    font-size: 2.75rem;
    color: var(--dark-1);
    margin-bottom: 1.5rem;
}

.about-home-text p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.9;
}

/* Responsive additions */
@media (max-width: 992px) {
    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT HOME SECTION ===== */
.about-home-section {
    background: #fff;
}

.about-home-text {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-home-text .section-label {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.about-home-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--dark-2, #444);
    margin-bottom: 1.1rem;
}

.about-home-text strong {
    font-size: 1.15rem;
    color: var(--dark-1, #1a1a1a);
}