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

:root {
    --gold: #2997aa;
    --gold-light: #3bb0c4;
    --gold-dark: #1f7a8a;
    --dark: #0a1628;
    --dark-2: #111d33;
    --dark-3: #1a2940;
    --light: #f0f6f8;
    --light-2: #e4eef1;
    --light-3: #d0dde2;
    --text: #3a4a5c;
    --text-light: #6b7d8e;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-light-bg: rgba(255, 255, 255, 0.65);
    --glass-light-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 8px 32px rgba(41, 151, 170, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background-color: #f4f8fa;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--dark);
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* ===== DECORATIVE ORBS ===== */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(41, 151, 170, 0.2);
    top: -80px;
    right: -60px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(59, 176, 196, 0.15);
    bottom: -40px;
    left: -40px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(41, 151, 170, 0.18);
    top: 10%;
    left: -80px;
    animation: float 9s ease-in-out infinite;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: rgba(130, 200, 215, 0.15);
    bottom: 5%;
    right: -40px;
    animation: float 7s ease-in-out infinite reverse;
}

.orb-5 {
    width: 400px;
    height: 400px;
    background: rgba(41, 151, 170, 0.15);
    top: -100px;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

.orb-6 {
    width: 250px;
    height: 250px;
    background: rgba(130, 200, 215, 0.12);
    bottom: -60px;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.orb-7 {
    width: 300px;
    height: 300px;
    background: rgba(41, 151, 170, 0.18);
    top: 20%;
    right: -80px;
    animation: float 10s ease-in-out infinite;
}

.orb-8 {
    width: 200px;
    height: 200px;
    background: rgba(59, 176, 196, 0.12);
    bottom: 10%;
    left: 5%;
    animation: float 7s ease-in-out infinite reverse;
}

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

.section-subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(41, 151, 170, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(41, 151, 170, 0.45);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--gold-dark);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
}

.navbar.scrolled .logo-main,
.navbar.scrolled .logo-sub {
    color: var(--dark);
}

.navbar.scrolled .nav-menu a {
    color: var(--text);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--gold);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    transition: var(--transition);
}

.logo-sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--transition);
}

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

.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #0e2a3d 40%, #134252 70%, #1a5568 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(41, 151, 170, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 176, 196, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}

.hero-desc strong {
    color: var(--gold-light);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding: 24px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PROMO SLIDER ===== */
.promo {
    background: linear-gradient(180deg, #f0f6f8 0%, #e8f1f4 100%);
    padding-bottom: 60px;
    position: relative;
}

/* orbs handled by .orb divs */

.promo-slider {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.promo-track.dragging {
    cursor: grabbing;
    transition: none;
}

.promo-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.promo-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(41, 151, 170, 0.15);
}

.promo-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    color: var(--dark);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

/* ===== BEFORE AFTER ===== */
.before-after {
    background: var(--white);
    position: relative;
}

/* orbs handled by .orb divs */

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

.ba-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(41, 151, 170, 0.15);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== PAIN POINT ===== */
.painpoint {
    background: var(--light);
    position: relative;
}

.painpoint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.painpoint-left {
    background: var(--white);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.painpoint-left h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark);
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pain-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    padding: 14px 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.pain-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(41, 151, 170, 0.1);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark);
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.solution-list li {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.orb-9 {
    width: 350px;
    height: 350px;
    background: rgba(41, 151, 170, 0.18);
    top: -60px;
    left: 40%;
    animation: float 9s ease-in-out infinite;
}

.orb-10 {
    width: 200px;
    height: 200px;
    background: rgba(130, 200, 215, 0.12);
    bottom: -40px;
    right: -30px;
    animation: float 7s ease-in-out infinite reverse;
}

/* ===== SERVICES ===== */
.services {
    background: linear-gradient(180deg, #f0f6f8 0%, #e8f1f4 100%);
    position: relative;
}

/* orbs handled by .orb divs */

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

.service-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(41, 151, 170, 0.12);
    border-color: var(--gold-light);
}

.service-card.featured {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-glass);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(41, 151, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    display: inline-block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(41, 151, 170, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

/* ===== TRUST ===== */
.trust {
    background: linear-gradient(135deg, #0a1628 0%, #0e2a3d 40%, #134252 70%, #1a5568 100%);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 151, 170, 0.15) 0%, transparent 65%);
    border-radius: 50%;
}

.trust::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 176, 196, 0.1) 0%, transparent 65%);
    border-radius: 50%;
}

.trust .section-subtitle {
    color: var(--gold-light);
}

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

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

.trust-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(41, 151, 170, 0.4);
    background: rgba(41, 151, 170, 0.1);
    transform: translateY(-4px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(41, 151, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trust-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(180deg, #f0f6f8 0%, #e8f1f4 100%);
    position: relative;
}

/* orbs handled by .orb divs */

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 50px rgba(41, 151, 170, 0.1);
    border-color: var(--gold-light);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

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

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.testimonial-author h4 {
    font-size: 14px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== BRANCHES ===== */
.branches {
    background: var(--white);
    padding: 60px 0;
}

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

.branch-card {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 151, 170, 0.15);
    transition: var(--transition);
}

.branch-card:hover {
    box-shadow: 0 16px 40px rgba(41, 151, 170, 0.1);
    border-color: var(--gold-light);
    transform: translateY(-4px);
}

.branch-info {
    padding: 28px 32px;
}

.branch-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--gold-dark);
}

.branch-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-light);
}

.branch-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-detail p {
    font-size: 14px;
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, #f0f6f8 0%, #e8f1f4 100%);
    position: relative;
}

/* orbs can be added if needed */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.contact-info-panel {
    background: linear-gradient(135deg, #0e2a3d 0%, #134252 40%, var(--gold-dark) 100%);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 176, 196, 0.2) 0%, transparent 65%);
    border-radius: 50%;
}

.contact-info-panel h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
}

.contact-info-panel > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
}

.contact-benefits li svg {
    flex-shrink: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-group:last-of-type {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(41, 151, 170, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(41, 151, 170, 0.1);
}

.contact-form .btn-full {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0a1628, #0e2a3d);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(41, 151, 170, 0.08) 0%, transparent 65%);
    border-radius: 50%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ===== 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 ===== */

/* Tablet */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 48px;
    }

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

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

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

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

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

    .promo-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Navbar Mobile */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 120px 12px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 26px;
    }

    /* Promo Mobile */
    .promo-slider {
        padding: 0 28px;
    }

    .promo-track {
        gap: 16px;
    }

    .promo-slide {
        flex: 0 0 calc(100vw - 56px);
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-prev {
        left: 4px;
    }

    .slider-next {
        right: 4px;
    }

    /* Before After Mobile */
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Pain Point Mobile */
    .painpoint-grid {
        grid-template-columns: 1fr;
    }

    .painpoint-left {
        padding: 32px 24px;
    }

    .solution-card {
        padding: 32px 24px;
        border-left: none;
        border-top: 1px solid rgba(41, 151, 170, 0.1);
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 24px;
    }

    /* Trust Mobile */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-card {
        padding: 24px 16px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Branches Mobile */
    .branches-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 40px 28px;
    }

    .contact-info-panel h2 {
        font-size: 26px;
    }

    .contact-form {
        padding: 28px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

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

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

    .promo-slide {
        flex: 0 0 calc(100vw - 56px);
    }
}
