/* ============================================
   BABALU'S PROFESSIONAL TATTOO STUDIO
   Custom Styles
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Navigation ---- */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-fixed.scrolled {
    background: rgba(254, 253, 248, 0.95);
    box-shadow: 0 4px 30px rgba(6, 95, 70, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #065f46;
    letter-spacing: -0.02em;
}

.nav-brand-icon {
    color: #059669;
}

.nav-brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #064e3b;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(6, 95, 70, 0.08);
    color: #047857;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fefdf8;
    background: #059669;
    border-radius: 50px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #065f46;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 44, 34, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    color: #fefdf8;
    background: #059669;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
}

.btn-outline {
    color: #065f46;
    background: transparent;
    border: 2px solid rgba(6, 95, 70, 0.3);
}

.btn-outline:hover {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.06);
    transform: translateY(-2px);
}

.btn-cream {
    color: #065f46;
    background: #f5f0e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-cream:hover {
    background: #faf0d7;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-cream {
    color: #fefdf8;
    background: transparent;
    border: 2px solid rgba(254, 253, 248, 0.4);
}

.btn-outline-cream:hover {
    border-color: rgba(254, 253, 248, 0.8);
    background: rgba(254, 253, 248, 0.1);
    transform: translateY(-2px);
}

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

/* ---- Section Layout ---- */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #064e3b;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    background: #fefdf8;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 230, 192, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #064e3b;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(6, 95, 70, 0.15);
}

/* Hero Image */
.hero-right {
    position: relative;
}

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

.hero-image {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(6, 78, 59, 0.15);
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #059669;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: #fefdf8;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.12);
    z-index: 2;
}

.hero-floating-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    color: #059669;
    flex-shrink: 0;
}

.hero-floating-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #064e3b;
}

.hero-floating-sub {
    display: block;
    font-size: 0.78rem;
    color: #6b7280;
}

/* Hero accent bar */
.hero-accent-bar {
    height: 6px;
    background: linear-gradient(90deg, #065f46 0%, #059669 40%, #34d399 70%, #f5e6c0 100%);
    position: relative;
    z-index: 1;
}

/* ---- Services ---- */
.services {
    padding: 120px 0;
    background: #fefdf8;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 95, 70, 0.1), transparent);
}

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

.service-card {
    position: relative;
    padding: 36px 32px;
    background: #fefdf8;
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #34d399);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(5, 150, 105, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: rgba(5, 150, 105, 0.04);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-accent {
    transform: scale(1.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 14px;
    color: #059669;
    margin-bottom: 22px;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(5, 150, 105, 0.14);
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 50px;
}

/* ---- Portfolio ---- */
.portfolio {
    padding: 120px 0;
    background: #065f46;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(52, 211, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 230, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio .section-tag {
    background: rgba(254, 253, 248, 0.12);
    color: #a7f3d0;
    border-color: rgba(254, 253, 248, 0.2);
}

.portfolio .section-title {
    color: #fefdf8;
}

.portfolio .section-title .text-emerald-600 {
    color: #34d399;
}

.portfolio .section-description {
    color: rgba(254, 253, 248, 0.65);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.portfolio-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.portfolio-item-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.3), rgba(6, 95, 70, 0.6));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-bg {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.9) 0%, transparent 100%);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.portfolio-item-category {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6ee7b7;
    margin-bottom: 6px;
}

.portfolio-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fefdf8;
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.portfolio-cta .btn-outline {
    border-color: rgba(254, 253, 248, 0.3);
    color: #fefdf8;
}

.portfolio-cta .btn-outline:hover {
    border-color: rgba(254, 253, 248, 0.7);
    background: rgba(254, 253, 248, 0.08);
}

/* ---- About ---- */
.about {
    padding: 120px 0;
    background: #fefdf8;
    position: relative;
}

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

.about-left .section-tag {
    margin-bottom: 16px;
}

.about-left .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 10px;
    color: #059669;
    flex-shrink: 0;
}

.about-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
    padding-top: 6px;
}

/* About images */
.about-image-stack {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 78, 59, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.15);
    border: 4px solid #fefdf8;
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #059669;
    border-radius: 16px;
    opacity: 0.1;
    z-index: -1;
}

/* ---- Process ---- */
.process {
    padding: 120px 0;
    background: #f5f0e8;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 95, 70, 0.1), transparent);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 32px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #059669, #34d399, #f5e6c0);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    margin-bottom: 48px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #059669;
    background: #fefdf8;
    border: 2px solid rgba(5, 150, 105, 0.2);
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-step-content {
    flex: 1;
    padding-top: 12px;
}

.process-step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 8px;
}

.process-step-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
    max-width: 560px;
}

.process-step-connector {
    position: absolute;
    right: -16px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(5, 150, 105, 0.15);
    transform: rotate(90deg);
}

/* ---- FAQ ---- */
.faq {
    padding: 120px 0;
    background: #fefdf8;
    position: relative;
}

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

.faq-item {
    border: 1px solid rgba(6, 95, 70, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    text-align: left;
    background: transparent;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(5, 150, 105, 0.03);
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #064e3b;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 8px;
    color: #059669;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(5, 150, 105, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4b5563;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 120px 0;
    background: #065f46;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle-1 {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-circle-2 {
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 230, 192, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-geo-1 {
    position: absolute;
    top: 60px;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(52, 211, 153, 0.1);
    transform: rotate(45deg);
    border-radius: 12px;
}

.cta-geo-2 {
    position: absolute;
    bottom: 80px;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(245, 230, 192, 0.08);
    transform: rotate(30deg);
    border-radius: 8px;
}

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

.cta-tag {
    background: rgba(254, 253, 248, 0.12);
    color: #a7f3d0;
    border-color: rgba(254, 253, 248, 0.2);
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fefdf8;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-title .text-cream-100 {
    color: #34d399;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(254, 253, 248, 0.7);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ---- Contact ---- */
.contact {
    padding: 120px 0;
    background: #fefdf8;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 95, 70, 0.1), transparent);
}

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

.contact-left .section-tag {
    margin-bottom: 16px;
}

.contact-left .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 36px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 12px;
    color: #059669;
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.contact-info-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #064e3b;
    line-height: 1.6;
}

.contact-info-link {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #059669;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.contact-info-link:hover {
    color: #047857;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #fefdf8;
    border: 1px solid rgba(6, 95, 70, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.06);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: #064e3b;
    background: #f9fafb;
    border: 1.5px solid rgba(6, 95, 70, 0.12);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    border-color: #059669;
    background: #fefdf8;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-top: 16px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 12px;
    color: #065f46;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-success svg {
    color: #059669;
    flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
    background: #022c22;
    padding: 80px 0 0;
    color: rgba(254, 253, 248, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fefdf8;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: #34d399;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.55);
    max-width: 300px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.4);
    margin-bottom: 20px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.95rem;
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: #34d399;
}

.footer-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(254, 253, 248, 0.55);
}

.footer-phone a,
.footer-email a {
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #34d399;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.35);
}

.footer-bottom p:last-child {
    text-align: right;
}

/* ============================================
   GEOMETRIC BACKGROUND SHAPES
   ============================================ */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.circle-1 {
    top: 15%;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(5, 150, 105, 0.04);
    border-radius: 50%;
    border: 2px solid rgba(5, 150, 105, 0.06);
}

.triangle-1 {
    top: 45%;
    right: -30px;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(245, 230, 192, 0.3);
    transform: rotate(15deg);
}

.circle-2 {
    bottom: 20%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: rgba(5, 150, 105, 0.03);
    border-radius: 50%;
}

.rect-1 {
    top: 70%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(5, 150, 105, 0.04);
    border-radius: 12px;
    transform: rotate(30deg);
}

.diamond-1 {
    top: 30%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: rgba(245, 230, 192, 0.4);
    transform: rotate(45deg);
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fefdf8;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
        border-radius: 12px;
    }

    .mobile-overlay {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        order: -1;
    }

    .hero-image {
        height: 400px;
        border-radius: 16px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-item {
        aspect-ratio: 4/3;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-stack {
        height: 400px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        left: 24px;
    }

    .process-step {
        gap: 20px;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom p:last-child {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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