@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --primary: #0b2545;
    --primary-mid: #13315c;
    --primary-light: #1b4975;
    --primary-lighter: #8da9c4;
    --accent: #c6922a;
    --accent-light: #d4a94e;
    --accent-dark: #a87a1f;
    --accent-glow: rgba(198, 146, 42, 0.10);
    --accent-glow-strong: rgba(198, 146, 42, 0.18);
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f3f4f6;
    --gray-100: #ebedf1;
    --gray-200: #dde1e7;
    --gray-300: #c5cad3;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --dark: #060e1a;
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --shadow-xs: 0 1px 2px rgba(11, 37, 69, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 4px 16px rgba(11, 37, 69, 0.07);
    --shadow-lg: 0 8px 32px rgba(11, 37, 69, 0.08);
    --shadow-xl: 0 16px 48px rgba(11, 37, 69, 0.10);
    --shadow-2xl: 0 24px 64px rgba(11, 37, 69, 0.14);
    --shadow-gold: 0 8px 32px rgba(198, 146, 42, 0.18);
    --shadow-card-hover: 0 20px 50px rgba(11, 37, 69, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --container: 1240px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s var(--ease)
}

ul,
ol {
    list-style: none
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem
}

.section-padding {
    padding: 7rem 0
}

/* ═══ SECTION HEADER ═══ */
.section-header {
    margin-bottom: 3.5rem
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, var(--accent-glow), rgba(198, 146, 42, 0.05));
    border: 1px solid rgba(198, 146, 42, 0.15);
    border-radius: var(--radius-full);
    color: var(--accent-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.section-badge i {
    font-size: .65rem
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.18;
    margin-bottom: .9rem;
    letter-spacing: -.01em
}

.section-header h2 span {
    color: var(--accent);
    font-style: italic
}

.section-header p {
    font-size: .98rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.75;
    letter-spacing: .01em
}

.section-header-center {
    text-align: center
}

.section-header-center p {
    margin: 0 auto
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .02em;
    padding: 10px 22px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: all .35s var(--ease)
}

.view-all-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    gap: 12px;
    background: var(--accent-glow)
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: .88rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all .35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .02em;
    position: relative;
    overflow: hidden
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .3s
}

.btn:hover::after {
    opacity: 1
}

.btn-primary {
    background: linear-gradient(160deg, var(--primary), var(--primary-mid));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(11, 37, 69, .2)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(11, 37, 69, .28)
}

.btn-accent {
    background: linear-gradient(160deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: var(--shadow-gold)
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(198, 146, 42, .32)
}

.btn-outline {
    border: 1.5px solid var(--primary-lighter);
    color: var(--primary);
    background: transparent
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px)
}

.btn-white-outline {
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(4px)
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white)
}

.btn-lg {
    padding: 16px 38px;
    font-size: .95rem;
    border-radius: var(--radius-md)
}

.btn-sm {
    padding: 9px 20px;
    font-size: .8rem
}

/* ═══ HEADER ═══ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all .5s var(--ease)
}

.header-top {
    background: var(--primary);
    padding: 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    height: 38px;
    transition: all .4s var(--ease)
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 2rem
}

.header-top-left a,
.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .65);
    transition: color .25s
}

.header-top-left a:hover {
    color: var(--accent-light)
}

.header-top-left i {
    font-size: .7rem;
    color: var(--accent)
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.header-social {
    display: flex;
    align-items: center;
    gap: 4px
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    transition: all .3s var(--ease)
}

.header-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1)
}

.header-main {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(11, 37, 69, .04);
    transition: all .5s var(--ease)
}

.site-header.scrolled .header-top {
    height: 0;
    padding: 0;
    border: none
}

.site-header.scrolled .header-main {
    box-shadow: 0 2px 40px rgba(11, 37, 69, .06)
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--primary), var(--primary-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(11, 37, 69, .18);
    position: relative
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 1px solid rgba(198, 146, 42, .25);
    pointer-events: none
}

.logo-text {
    display: flex;
    flex-direction: column
}

.logo-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: .06em;
    line-height: 1.15
}

.logo-text span {
    font-size: .62rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 1px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.main-nav a {
    padding: 8px 16px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all .3s var(--ease);
    position: relative;
    letter-spacing: .01em
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary)
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer
}

.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all .3s var(--ease)
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05)
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(6, 14, 26, .92) 0%, rgba(11, 37, 69, .78) 40%, rgba(19, 49, 92, .62) 70%, rgba(11, 37, 69, .75) 100%)
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    padding-bottom: 100px
}

.hero-content {
    max-width: 700px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    background: rgba(198, 146, 42, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 146, 42, .2);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp .8s var(--ease)
}

.hero-badge i {
    font-size: .6rem
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    animation: fadeInUp .8s var(--ease) .1s both;
    letter-spacing: -.02em
}

.hero h1 span {
    color: var(--accent-light);
    font-style: italic;
    position: relative
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: .4;
    border-radius: 2px
}

.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 520px;
    animation: fadeInUp .8s var(--ease) .2s both;
    font-weight: 300;
    letter-spacing: .02em
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
    animation: fadeInUp .8s var(--ease) .3s both
}

.hero-search-box {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    padding: 5px;
    display: flex;
    align-items: center;
    max-width: 520px;
    animation: fadeInUp .8s var(--ease) .35s both;
    transition: all .3s
}

.hero-search-box:focus-within {
    border-color: rgba(198, 146, 42, .3);
    background: rgba(255, 255, 255, .1)
}

.hero-search-box input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: .9rem;
    outline: none;
    font-weight: 300;
    letter-spacing: .02em
}

.hero-search-box input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    animation: fadeInUp .8s var(--ease) .5s both
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .02em
}

.hero-trust-item i {
    color: var(--accent);
    font-size: .8rem
}

.hero-float-stats {
    position: absolute;
    right: 100px;
    bottom: 180px;
    z-index: 3;
    animation: floatSlow 8s ease-in-out infinite
}

.hero-stat-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    text-align: center;
    color: var(--white);
    min-width: 180px
}

.hero-stat-card .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--accent-light);
    font-family: var(--font-display)
}

.hero-stat-card .stat-label {
    font-size: .72rem;
    opacity: .55;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase
}

/* ═══ SERVICES ═══ */
.services-section {
    background: var(--off-white);
    position: relative
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent)
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all .45s var(--ease);
    border: 1px solid var(--gray-100);
    position: relative
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
    z-index: 2
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card-img {
    position: relative;
    height: 210px;
    overflow: hidden
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s var(--ease)
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
    filter: brightness(1.05)
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow-gold)
}

.service-card-body {
    padding: 1.6rem 1.8rem 1.8rem
}

.service-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.service-card-body p {
    font-size: .84rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 1rem
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    transition: all .3s var(--ease);
    letter-spacing: .02em
}

.service-card-link:hover {
    color: var(--accent);
    gap: 10px
}

/* ═══ STANDARDS ═══ */
.standards-section {
    background: var(--white);
    position: relative;
    overflow: hidden
}

.standards-section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 146, 42, .04) 0%, transparent 70%);
    pointer-events: none
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.standard-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    transition: all .45s var(--ease);
    position: relative;
    overflow: hidden
}

.standard-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform .5s var(--ease)
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: transparent
}

.standard-card:hover::after {
    transform: scaleX(1)
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary), var(--primary-mid));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--white);
    font-size: 1.3rem;
    transition: all .4s var(--ease);
    position: relative
}

.standard-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    border: 1px solid rgba(198, 146, 42, .15);
    transition: all .3s
}

.standard-card:hover .standard-icon {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    transform: scale(1.08) rotate(3deg)
}

.standard-card:hover .standard-icon::after {
    border-color: rgba(198, 146, 42, .3);
    inset: -5px
}

.standard-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -.01em
}

.standard-card p {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.6
}

/* ═══ GALLERY ═══ */
.gallery-section {
    background: var(--off-white)
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-100);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.98) 0%, rgba(11, 37, 69, 0.4) 40%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all .5s var(--ease);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(1deg);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-display);
    letter-spacing: .02em;
}

.gallery-overlay p {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 280px);
    }

    .gallery-item.tall {
        grid-row: span 1;
        grid-column: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* ═══ ABOUT ═══ */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden
}

.about-section::before {
    content: '';
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 37, 69, .02) 0%, transparent 70%);
    pointer-events: none
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.about-content {
    max-width: 520px
}

.about-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: linear-gradient(135deg, var(--accent-glow), rgba(198, 146, 42, .05));
    border: 1px solid rgba(198, 146, 42, .15);
    border-radius: var(--radius-full);
    color: var(--accent-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.18;
    margin-bottom: 1.2rem
}

.about-content h2 span {
    color: var(--accent);
    font-style: italic
}

.about-content>p {
    font-size: .95rem;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 2.2rem
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2.5rem
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    transition: all .35s var(--ease)
}

.about-feature-item:hover {
    background: var(--white);
    border-color: rgba(198, 146, 42, .15);
    box-shadow: var(--shadow-md)
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(145deg, var(--primary), var(--primary-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .95rem
}

.about-feature-item h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px
}

.about-feature-item p {
    font-size: .78rem;
    color: var(--gray-500);
    line-height: 1.55
}

.about-visual {
    position: relative
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, .1);
    z-index: 2;
    pointer-events: none
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover
}

.about-stat-float {
    position: absolute;
    top: -24px;
    right: -16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 30px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: floatSlow 7s ease-in-out infinite;
    border: 1px solid var(--gray-100)
}

.about-stat-float .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-family: var(--font-display)
}

.about-stat-float .stat-plus {
    color: var(--primary);
    font-size: 1.2rem
}

.about-stat-float .stat-label {
    font-size: .72rem;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px
}

.about-stat-float-2 {
    position: absolute;
    bottom: 50px;
    left: -24px;
    background: linear-gradient(145deg, var(--primary), var(--primary-mid));
    border-radius: var(--radius-lg);
    padding: 20px 26px;
    box-shadow: 0 12px 36px rgba(11, 37, 69, .25);
    text-align: center;
    color: var(--white);
    animation: floatSlow 9s ease-in-out infinite reverse
}

.about-stat-float-2 .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-display)
}

.about-stat-float-2 .stat-label {
    font-size: .68rem;
    opacity: .6;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    background: linear-gradient(170deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 146, 42, .06) 0%, transparent 70%);
    pointer-events: none
}

.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.008'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3.5-2 3z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none
}

.testimonials-section .section-header h2 {
    color: var(--white)
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, .4)
}

.testimonials-section .section-badge {
    background: rgba(198, 146, 42, .1);
    border-color: rgba(198, 146, 42, .15)
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2
}

.testimonial-card {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .45s var(--ease);
    position: relative
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .4s
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-6px);
    border-color: rgba(198, 146, 42, .15)
}

.testimonial-card:hover::before {
    opacity: 1
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .8rem
}

.testimonial-stars i {
    color: var(--accent);
    font-size: .78rem
}

.testimonial-text {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: .88rem;
    box-shadow: var(--shadow-gold)
}

.testimonial-info h5 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white)
}

.testimonial-info span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    font-weight: 400
}

/* ═══ BLOG ═══ */
.blog-section {
    background: var(--off-white)
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-100);
    transition: all .45s var(--ease)
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s var(--ease)
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05)
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 13px;
    background: var(--accent);
    color: var(--white);
    font-size: .66rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow-gold)
}

.blog-card-body {
    padding: 1.5rem 1.8rem 1.8rem
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .6rem;
    font-size: .74rem;
    color: var(--gray-400)
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .3s
}

.blog-card-body h3:hover {
    color: var(--accent)
}

.blog-card-body>p {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

/* ═══ CTA BANNER ═══ */
.cta-banner-section {
    background: linear-gradient(155deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 146, 42, .1) 0%, transparent 70%);
    pointer-events: none
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 2
}

.cta-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem
}

.cta-banner-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2.2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .5);
    position: relative
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 146, 42, .2), transparent)
}

.footer-main {
    padding: 5rem 0 3.5rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem
}

.footer-brand .logo {
    margin-bottom: 1.2rem
}

.footer-brand .logo-icon {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark))
}

.footer-brand .logo-text strong {
    color: var(--white)
}

.footer-brand>p {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, .4)
}

.footer-social {
    display: flex;
    gap: 8px
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .4);
    font-size: .82rem;
    transition: all .3s var(--ease);
    border: 1px solid rgba(255, 255, 255, .04)
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--accent)
}

.footer-column h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: .02em
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s var(--ease)
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px
}

.footer-links a i {
    font-size: .55rem;
    opacity: 0;
    transition: all .25s
}

.footer-links a:hover i {
    opacity: 1
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 3px;
    font-size: .8rem;
    min-width: 14px
}

.footer-contact-item p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .5);
    transition: color .25s
}

.footer-contact-item a:hover {
    color: var(--accent)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 1.5rem 0
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .25)
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem
}

.footer-bottom-links a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
    transition: color .25s
}

.footer-bottom-links a:hover {
    color: var(--accent)
}

/* ═══ MODAL ═══ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, .7);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .35s var(--ease)
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    transform: scale(.92) translateY(24px);
    transition: all .45s var(--ease-spring)
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0)
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-100)
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center
}

.modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all .25s;
    font-size: 1.1rem
}

.modal-close:hover {
    background: var(--gray-50);
    color: var(--gray-700)
}

.modal-body {
    padding: 2rem
}

.form-group {
    margin-bottom: 1.2rem
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    letter-spacing: .02em
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all .25s;
    outline: none
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 37, 69, .06)
}

.form-control::placeholder {
    color: var(--gray-400)
}

textarea.form-control {
    resize: vertical;
    min-height: 90px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes revealFallback {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    animation: revealFallback 0.001s 2.5s ease forwards
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    animation: none
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about-visual {
        order: -1
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-float-stats {
        display: none
    }
}

@media(max-width:768px) {
    .header-top {
        display: none
    }

    .main-nav {
        display: none
    }

    .mobile-toggle {
        display: flex
    }

    .header-cta .btn {
        display: none
    }

    .hero {
        min-height: 80vh
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-search-box {
        width: 100%
    }

    .hero-trust-bar {
        flex-wrap: wrap;
        gap: 1rem
    }

    .services-grid,
    .blog-grid,
    .testimonials-slider {
        grid-template-columns: 1fr
    }

    .standards-grid,
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-item.wide {
        grid-column: auto
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center
    }

    .section-padding {
        padding: 4rem 0
    }

    .services-header,
    .gallery-header,
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

    .form-row {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .hero h1 {
        font-size: 1.7rem
    }

    .about-stat-float,
    .about-stat-float-2 {
        display: none
    }
}

::-webkit-scrollbar {
    width: 7px
}

::-webkit-scrollbar-track {
    background: var(--gray-50)
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400)
}

::selection {
    background: var(--primary);
    color: var(--white)
}

/* ═══ PAGE HEADER ═══ */
.page-header {
    background: linear-gradient(135deg, var(--off-white) 0%, #f1f5f9 100%);
    padding: 180px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-100);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--primary));
    opacity: 0.8;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 37, 69, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.page-header h1 i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 0.9em;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.95rem;
    font-weight: 500;
}

.page-header .breadcrumb a {
    color: var(--primary-light);
    transition: all 0.3s var(--ease);
}

.page-header .breadcrumb a:hover {
    color: var(--accent);
}

.page-header .breadcrumb span {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-chat-panel {
    display: none;
    flex-direction: column;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    overflow: hidden;
    transform-origin: bottom right;
    animation: wa-slide-up 0.3s ease-out forwards;
}

@keyframes wa-slide-up {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-chat-header {
    background-color: #128C7E;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.whatsapp-chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-title-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.wa-title-text {
    display: flex;
    flex-direction: column;
}

.wa-title-text span {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.wa-title-text small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 2px;
}

.whatsapp-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.whatsapp-chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ece5dd;
}

.whatsapp-chat-message {
    background-color: white;
    padding: 10px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    align-self: flex-start;
    margin-bottom: 5px;
}

.whatsapp-chat-body textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.whatsapp-chat-body textarea:focus {
    outline: none;
    border-color: #128C7E;
}

.whatsapp-send-btn {
    background-color: #128C7E;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.whatsapp-send-btn:hover {
    background-color: #075E54;
}