/* ===================================
   J's Studio — Custom Styles
   Charcoal + Coral | Vibrant Modern
   =================================== */

/* CSS Custom Properties */
:root {
    --color-charcoal: #1A1A2E;
    --color-charcoal-light: #2D2D44;
    --color-charcoal-dark: #0F0F1A;
    --color-coral: #E85D4A;
    --color-coral-light: #FF7A66;
    --color-coral-dark: #C94A38;
    --color-accent: #F5A623;
    --color-bg: #FAFAFA;
    --color-bg-warm: #FFF8F6;
    --color-white: #FFFFFF;
    --color-text: #1A1A2E;
    --color-text-light: #6B7280;
    --color-text-muted: #9CA3AF;
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 10px 40px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.15);
    --shadow-coral: 0 8px 30px rgba(232, 93, 74, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Geometric Background Shapes
   =================================== */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--color-coral);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--color-charcoal);
    bottom: 20%;
    left: -100px;
}

.geo-circle--3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 50%;
    right: 10%;
    opacity: 0.03;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.04;
}

.geo-triangle--1 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--color-coral);
    top: 40%;
    left: 5%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    opacity: 0.03;
}

.geo-square--1 {
    width: 150px;
    height: 150px;
    background: var(--color-charcoal);
    top: 60%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0.05;
}

.geo-ring--1 {
    width: 300px;
    height: 300px;
    border-color: var(--color-coral);
    top: 30%;
    left: 60%;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo__mark {
    width: 44px;
    height: 44px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.logo:hover .logo__mark {
    transform: rotate(0deg) scale(1.05);
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.logo__accent {
    color: var(--color-coral);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--color-coral);
    background: rgba(232, 93, 74, 0.06);
}

.nav__link--cta {
    background: var(--color-coral);
    color: var(--color-white) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--color-coral-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-coral);
}

.nav__close {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-charcoal);
    transition: var(--transition);
}

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

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    z-index: 1001;
}

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

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 93, 74, 0.4);
}

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

.btn--outline:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-charcoal);
}

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

.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn--full {
    width: 100%;
}

/* ===================================
   Section Headers
   =================================== */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-coral);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--color-coral);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-coral {
    color: var(--color-coral);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-tag {
    padding-left: 0;
}

.section-header--center .section-tag::before {
    display: none;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-white) 50%, #FFF0ED 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232, 93, 74, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(26, 26, 46, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__highlight {
    position: relative;
    color: var(--color-coral);
    display: inline;
}

.hero__highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(232, 93, 74, 0.15);
    z-index: -1;
    border-radius: 2px;
}

.hero__subheadline {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.hero__stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero__image--main {
    width: 320px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 3;
}

.hero__image--secondary {
    width: 220px;
    height: 260px;
    top: 80px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--color-white);
}

.hero__image--accent {
    width: 140px;
    height: 140px;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    border: 4px solid var(--color-white);
    border-radius: var(--radius-lg);
}

.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-charcoal);
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.hero__float-card--1 {
    bottom: 120px;
    left: 20px;
}

.hero__float-card--2 {
    top: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-coral), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===================================
   Services Section
   =================================== */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card--coral {
    background: var(--color-coral);
    color: var(--color-white);
}

.service-card--coral:hover {
    box-shadow: 0 20px 50px rgba(232, 93, 74, 0.35);
}

.service-card--charcoal {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.service-card--charcoal:hover {
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.35);
}

.service-card--accent {
    background: var(--color-accent);
    color: var(--color-white);
}

.service-card--accent:hover {
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.35);
}

.service-card--light {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.service-card--light:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.service-card--light .service-card__icon {
    background: rgba(232, 93, 74, 0.1);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 20px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.service-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
    flex-shrink: 0;
}

/* ===================================
   About Section
   =================================== */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--color-charcoal);
    color: var(--color-white);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(232, 93, 74, 0.08);
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.06);
    pointer-events: none;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__visual {
    position: relative;
    height: 580px;
}

.about__image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-charcoal);
}

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

.about__experience-badge {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
    z-index: 2;
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.about__experience-text {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content {
    color: var(--color-white);
}

.about__content .section-tag {
    color: var(--color-coral-light);
}

.about__content .section-tag::before {
    background: var(--color-coral-light);
}

.about__content .section-title {
    color: var(--color-white);
}

.about__text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 93, 74, 0.15);
    border-radius: var(--radius-md);
}

.about__value-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-white);
}

.about__value-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.about__content .btn {
    margin-top: 12px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    position: relative;
    padding: 120px 0;
    background: var(--color-bg-warm);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-top: 60px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5),
.gallery__item:nth-child(6) {
    grid-column: span 4;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    position: relative;
    padding: 120px 0;
    background: var(--color-white);
    overflow: hidden;
}

.testimonials__slider {
    margin-top: 60px;
    position: relative;
}

.testimonials__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--color-coral);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-card__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-coral);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.testimonial-card__detail {
    font-size: 14px;
    color: var(--color-text-muted);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-charcoal);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.testimonials__btn:hover {
    background: var(--color-coral);
    color: var(--color-white);
    border-color: var(--color-coral);
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    transition: var(--transition);
}

.testimonials__dot--active {
    background: var(--color-coral);
    width: 32px;
    border-radius: 5px;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--color-coral);
    overflow: hidden;
}

.cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__shape {
    position: absolute;
    opacity: 0.1;
}

.cta__shape--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-white);
    top: -150px;
    right: -100px;
}

.cta__shape--triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--color-white);
    bottom: -40px;
    left: 10%;
    transform: rotate(-20deg);
}

.cta__shape--square {
    width: 120px;
    height: 120px;
    background: var(--color-white);
    bottom: 20%;
    right: 15%;
    transform: rotate(30deg);
}

.cta__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__headline {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.cta__actions .btn--white:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--color-bg);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-accent), var(--color-coral));
}

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

.contact__text {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-md);
}

.contact__detail-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--color-charcoal);
    transition: var(--transition);
}

.contact__detail-value a:hover {
    color: var(--color-coral);
}

/* Contact Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-coral);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(232, 93, 74, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.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='%236B7280' stroke-width='2' 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: 40px;
    cursor: pointer;
}

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

/* Form Success */
.contact__form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.form-success__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    filter: grayscale(30%);
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    pointer-events: none;
}

.map-section__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    box-shadow: var(--shadow-xl);
    pointer-events: auto;
    max-width: 360px;
}

.map-section__card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.map-section__card p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-section__card .btn {
    font-size: 14px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-charcoal-dark);
    color: var(--color-white);
    padding: 80px 0 0;
}

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

.footer__tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__nav a:hover {
    color: var(--color-coral);
    padding-left: 4px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__contact-list a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__contact-list a:hover {
    color: var(--color-coral);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollLine {
    0% {
        opacity: 1;
        height: 40px;
    }
    50% {
        opacity: 0.5;
        height: 20px;
    }
    100% {
        opacity: 1;
        height: 40px;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__image-stack {
        height: 480px;
    }
    
    .hero__image--main {
        width: 260px;
        height: 340px;
    }
    
    .hero__image--secondary {
        width: 180px;
        height: 210px;
    }
    
    .hero__image--accent {
        width: 120px;
        height: 120px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about__visual {
        height: 450px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery__item--large,
    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery__item {
        height: 280px;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile Navigation */
    .nav__toggle {
        display: flex;
    }
    
    .nav__close {
        display: flex;
    }
    
    .nav {
        position: fixed;
        inset: 0;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav__link {
        font-size: 22px;
        padding: 14px 28px;
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: 16px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__visual {
        display: none;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    /* Services Mobile */
    .services {
        padding: 80px 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    /* About Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about__visual {
        height: 380px;
    }
    
    .about__image-main {
        width: 240px;
        height: 320px;
    }
    
    .about__image-float {
        width: 180px;
        height: 210px;
    }
    
    .about__experience-badge {
        width: 100px;
        height: 100px;
        right: 20px;
    }
    
    .about__experience-number {
        font-size: 26px;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 80px 0;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item {
        height: 240px;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .testimonial-card__text {
        font-size: 16px;
    }
    
    /* CTA Mobile */
    .cta {
        padding: 80px 0;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact__form-card {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 32px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn--lg {
        padding: 16px 28px;
        font-size: 15px;
    }
}
