/* ===== CSS Custom Properties ===== */
:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2d2d2d;
    --color-charcoal-mid: #3a3a3a;
    --color-coral: #FF6B6B;
    --color-coral-light: #FF8E8E;
    --color-coral-dark: #E85555;
    --color-cream: #FFF8F5;
    --color-white: #FFFFFF;
    --color-off-white: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D1D1D1;
    --color-gray-500: #888888;
    --color-gray-700: #555555;
    --color-gray-900: #1a1a1a;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    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;
    background: var(--color-coral);
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: -100px;
}

.geo-circle--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    opacity: 0.06;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 173px 100px;
    border-color: transparent transparent var(--color-coral) transparent;
    opacity: 0.04;
    top: 40%;
    left: 5%;
    transform: rotate(-15deg);
}

.geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    opacity: 0.03;
    bottom: 30%;
    right: 5%;
    transform: rotate(45deg);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 248, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-charcoal);
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transform: rotate(-10deg);
}

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

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-gray-700);
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-coral);
    background: rgba(255, 107, 107, 0.08);
}

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal);
    padding: 8px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--color-coral);
    background: rgba(255, 107, 107, 0.08);
}

.mobile-menu__link--cta {
    color: white;
    background: var(--color-coral);
    margin-top: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

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

.btn--primary:hover {
    background: var(--color-coral-dark);
    border-color: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-gray-300);
}

.btn--ghost:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
}

.btn--outline {
    background: transparent;
    color: var(--color-coral);
    border-color: var(--color-coral);
}

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

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

/* ===== Section Header ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-coral);
    background: rgba(255, 107, 107, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-accent {
    color: var(--color-coral);
    position: relative;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 107, 0.25);
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--color-cream);
    padding: 100px 0 0;
    overflow: hidden;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--color-gray-200);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 24px;
    width: fit-content;
}

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

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

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--color-coral);
    position: relative;
    display: inline-block;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

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

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

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

/* Hero Visual */
.hero__visual {
    position: relative;
}

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

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero__image-wrapper img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero__image-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-charcoal);
    color: white;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero__image-float--1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.hero__image-float--2 {
    top: 60px;
    right: -30px;
    animation-delay: 1.5s;
}

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

.hero__wave {
    margin-top: auto;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Services Section ===== */
.services {
    background: var(--color-charcoal);
    padding: 100px 0;
    position: relative;
}

.services .section-title {
    color: white;
}

.services .section-description {
    color: var(--color-gray-300);
}

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

.service-card {
    background: var(--color-charcoal-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-coral);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card--featured {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
    border-color: transparent;
}

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

.service-card--featured:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.service-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    color: var(--color-coral);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 107, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    margin-bottom: 20px;
}

.service-card--featured .service-card__icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

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

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card--featured .service-card__desc {
    color: rgba(255,255,255,0.85);
}

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

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-gray-300);
}

.service-card--featured .service-card__list li {
    color: rgba(255,255,255,0.85);
}

.service-card__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-coral);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card--featured .service-card__list li::before {
    background: white;
}

/* ===== About Section ===== */
.about {
    background: var(--color-cream);
    padding: 100px 0;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

.about__img-secondary img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-coral);
    color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about__experience-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 4px;
}

.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
}

.about__feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 107, 107, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

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

/* ===== Gallery Section ===== */
.gallery {
    background: white;
    padding: 100px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
    transform: translateY(0);
}

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

.gallery__item--large img {
    height: 100%;
}

.gallery__item--wide {
    grid-column: span 7;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--color-cream);
    padding: 100px 0;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 107, 0.2);
}

.testimonial-card__quote {
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--color-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

.testimonial-card__location {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

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

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

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

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

.cta__shape--square {
    width: 200px;
    height: 200px;
    background: var(--color-coral);
    bottom: -50px;
    left: 10%;
    transform: rotate(30deg);
}

.cta__shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent var(--color-coral) transparent;
    top: 20%;
    left: 5%;
    transform: rotate(-20deg);
}

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

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta__title-accent {
    color: var(--color-coral);
}

.cta__description {
    font-size: 1.1rem;
    color: var(--color-gray-300);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* ===== Contact Section ===== */
.contact {
    background: white;
    padding: 100px 0;
}

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

.contact__info .section-title {
    text-align: left;
}

.contact__text {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

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

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--color-gray-200);
}

.contact__form-header {
    margin-bottom: 28px;
}

.contact__form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.contact__form-header p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    background: white;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input::placeholder {
    color: var(--color-gray-500);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

/* ===== Map Section ===== */
.map-section {
    background: var(--color-gray-200);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 350px;
    filter: grayscale(30%);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-charcoal);
    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__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transform: rotate(-10deg);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
}

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

.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

.footer__contact a {
    color: var(--color-gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

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

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-coral);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-coral-dark);
    transform: translateY(-3px);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__image-wrapper img {
        height: 550px;
    }

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

    .about__layout {
        gap: 60px;
    }

    .about__img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about__img-secondary img {
        width: 280px;
        height: 210px;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .contact__layout {
        gap: 60px;
    }

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

    .footer__top > :first-child {
        grid-column: span 2;
    }
}

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

    .nav__menu {
        display: none;
    }

    .hero {
        padding-top: 80px;
    }

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

    .hero__visual {
        order: -1;
    }

    .hero__image-wrapper img {
        height: 400px;
    }

    .hero__image-float--1 {
        left: 10px;
        bottom: 20px;
    }

    .hero__image-float--2 {
        right: 10px;
        top: 20px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__wave svg {
        height: 50px;
    }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about__img-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -60px;
        margin-left: 20px;
    }

    .about__img-secondary img {
        width: 100%;
        height: 250px;
    }

    .about__experience-badge {
        top: 10px;
        left: 10px;
        padding: 16px;
    }

    .about__experience-number {
        font-size: 1.8rem;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

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

    .gallery__item--large img {
        height: 250px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item img {
        height: 200px;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    .contact__form-wrapper {
        padding: 28px;
    }

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

    .footer__top > :first-child {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
}
