/* ========== CSS Custom Properties ========== */
:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.12);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s 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-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-700);
    background-color: #fefefe;
    overflow-x: hidden;
}

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

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

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

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

/* ========== Background Blobs ========== */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--teal-200);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--rose-100);
    bottom: 20%;
    left: -80px;
    animation-delay: -7s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--teal-100);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: rgba(254, 254, 254, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(254, 254, 254, 0.9);
    box-shadow: 0 1px 20px rgba(15, 23, 42, 0.06);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    transition: var(--transition-fast);
}

.nav__logo:hover {
    color: var(--teal-600);
}

.nav__logo-icon {
    color: var(--teal-600);
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.nav__link--cta {
    background: var(--teal-600);
    color: white;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--teal-700);
    color: white;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav__toggle:hover {
    background: var(--slate-100);
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.btn--primary {
    background: var(--teal-600);
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: white;
    border-color: var(--teal-300);
    color: var(--teal-700);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn--outline-light:hover {
    background: white;
    color: var(--teal-700);
    border-color: white;
}

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

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

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

.section-title em {
    font-style: italic;
    color: var(--teal-600);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    color: var(--teal-600);
    z-index: 2;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}

.hero__badge svg {
    color: #f59e0b;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--slate-800);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__title-accent {
    font-style: italic;
    color: var(--teal-600);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--teal-200);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__trust-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--teal-700);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.78rem;
    color: var(--slate-400);
    font-weight: 500;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

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

.hero__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero__image-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    animation: float 4s ease-in-out infinite;
}

.hero__image-float svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

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

.hero__image-float--2 {
    top: 40px;
    right: -20px;
    animation-delay: -2s;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-100);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

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

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========== Services ========== */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--teal-600);
    margin-top: -1px;
}

.services .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--teal-100);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.services .section-title em {
    color: var(--teal-200);
}

.services .section-subtitle {
    color: var(--teal-200);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-card--featured {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
    color: var(--slate-700);
}

.service-card--featured .service-card__title {
    color: var(--slate-800);
}

.service-card--featured .service-card__desc {
    color: var(--slate-500);
}

.service-card--featured .service-card__features li {
    color: var(--slate-600);
}

.service-card__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: var(--teal-100);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

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

.service-card--featured .service-card__icon {
    background: var(--teal-50);
    color: var(--teal-600);
}

.service-card:hover .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

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

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

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

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

/* ========== About ========== */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--teal-50) 0%, #fefefe 100%);
}

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

.about__image-group {
    position: relative;
}

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

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

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid white;
}

.about__image-secondary img {
    width: 240px;
    height: 290px;
    object-fit: cover;
    display: block;
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--teal-600);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about__experience-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-top: 4px;
}

.about__content-col {
    padding-left: 20px;
}

.about__content-col .section-tag {
    margin-bottom: 16px;
}

.about__text {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.about__highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about__highlight-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-sm);
    color: var(--teal-600);
    flex-shrink: 0;
}

.about__highlight span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate-700);
    line-height: 1.4;
}

/* ========== Gallery ========== */
.gallery {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: #fefefe;
}

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

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

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

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

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

.gallery__item--wide img { height: 300px; }
.gallery__item:not(.gallery__item--wide) img { height: 240px; }

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

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

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

.gallery__item-overlay span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

/* ========== Products ========== */
.products {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--teal-50) 0%, #fefefe 100%);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img-wrapper {
    overflow: hidden;
    background: var(--slate-50);
}

.product-card__img-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card__img-wrapper img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px 22px 24px;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.product-card__desc {
    font-size: 0.85rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.products__cta {
    text-align: center;
}

.products__cta p {
    font-size: 1rem;
    color: var(--slate-500);
}

.products__cta a {
    color: var(--teal-600);
    font-weight: 600;
    border-bottom: 1px solid var(--teal-200);
    transition: var(--transition-fast);
}

.products__cta a:hover {
    color: var(--teal-700);
    border-color: var(--teal-600);
}

/* ========== Contact ========== */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: #fefefe;
}

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

.contact__text {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    color: var(--teal-600);
    flex-shrink: 0;
}

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

.contact__detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
}

.contact__detail-value {
    font-size: 0.95rem;
    color: var(--slate-700);
    line-height: 1.6;
}

.contact__link {
    color: var(--teal-600);
    transition: var(--transition-fast);
}

.contact__link:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

/* Contact Form */
.contact__form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--slate-400);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form__input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--slate-700);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition-fast);
}

.form__input::placeholder {
    color: var(--slate-300);
}

.form__input:focus {
    border-color: var(--teal-400);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 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='%2394a3b8' 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;
}

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

/* Form Success */
.contact__form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: 50%;
    color: var(--teal-600);
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.9rem;
    color: var(--slate-500);
}

.contact__form.hidden {
    display: none;
}

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

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.85) 0%, rgba(15, 118, 110, 0.9) 100%);
    display: flex;
    align-items: center;
}

.map-section__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.map-section__content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 24px;
}

.map-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.map-section__text {
    font-size: 1rem;
    color: var(--teal-100);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ========== Footer ========== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--slate-800);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    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-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.footer__logo:hover {
    color: var(--teal-300);
}

.footer__logo svg {
    color: var(--teal-400);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer__link-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-300);
    margin-bottom: 20px;
}

.footer__link-col a,
.footer__link-col span {
    display: block;
    font-size: 0.88rem;
    color: var(--slate-400);
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer__link-col a:hover,
.footer__link-col span:hover {
    color: var(--teal-300);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

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

.footer__location {
    font-size: 0.82rem;
    color: var(--slate-600) !important;
}

/* ========== Scroll Animations ========== */
.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.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__container {
        gap: 60px;
    }
    
    .about__image-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .about__image-secondary img {
        width: 180px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
        z-index: 999;
    }
    
    .nav__menu.open {
        right: 0;
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        width: 100%;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(4px);
        z-index: 998;
    }
    
    .nav__overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper img {
        height: 360px;
    }
    
    .hero__image-float--1 {
        left: 10px;
        bottom: 20px;
    }
    
    .hero__image-float--2 {
        right: 10px;
        top: 20px;
    }
    
    .hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero__trust-divider {
        display: none;
    }
    
    .hero__wave svg {
        height: 60px;
    }
    
    /* Services */
    .services {
        padding: 80px 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about {
        padding: 80px 0;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about__image-group {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about__image-main img {
        height: 360px;
    }
    
    .about__image-secondary {
        right: 10px;
        bottom: -16px;
    }
    
    .about__image-secondary img {
        width: 140px;
        height: 170px;
    }
    
    .about__experience-badge {
        top: -12px;
        left: -12px;
        padding: 14px 18px;
    }
    
    .about__experience-num {
        font-size: 1.8rem;
    }
    
    .about__content-col {
        padding-left: 0;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery {
        padding: 80px 0;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
    
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4) {
        grid-column: span 1;
    }
    
    .gallery__item:nth-child(5) {
        grid-column: span 2;
    }
    
    .gallery__item--wide img,
    .gallery__item:not(.gallery__item--wide) img {
        height: 200px;
    }
    
    /* Products */
    .products {
        padding: 80px 0;
    }
    
    .products__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Contact */
    .contact {
        padding: 80px 0;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-card {
        padding: 32px 24px;
    }
    
    /* Map */
    .map-section__img {
        height: 220px;
    }
    
    .map-section__content {
        padding: 40px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .product-card__img-wrapper img {
        height: 220px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--wide,
    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column: span 1;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
