@font-face {
    font-family: 'Ambit';
    src: url('Ambit/Ambit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('Ambit/Ambit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('Ambit/Ambit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ambit';
    src: url('Ambit/Ambit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    /* TUI Brand Colors - Official 2021 */
    --color-primary: #D40E14;
    --color-primary-dark: #B00B10;
    --color-secondary: #002E5D;
    --color-accent: #70CBF4;

    /* Neutrals & Shades */
    --color-text-main: #002E5D;
    --color-text-body: #444444;
    --color-bg-light: #F3F0EC;
    /* TUI Beige 25% */
    --color-bg-white: #ffffff;
    --color-white: #ffffff;
    --color-border: #E7E3DB;
    /* TUI Beige 50% */
    --color-grey-medium: #737373;
    /* TUI Grey */

    /* Typography */
    --font-heading: 'Ambit', sans-serif;
    --font-body: 'Ambit', sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1280px;
    --section-padding: 100px 0;

    /* Effects - UI-UX Pro Max Standards */
    --transition-fast: 200ms cubic-bezier(0.23, 1, 0.32, 1);
    --transition-smooth: 400ms cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-sm: 0 2px 8px rgba(0, 46, 93, 0.05);
    --shadow-md: 0 10px 40px -10px rgba(0, 46, 93, 0.08);
    --shadow-lg: 0 20px 60px -15px rgba(0, 46, 93, 0.12);
    --shadow-hover: 0 30px 80px -20px rgba(0, 46, 93, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --blur-strength: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
}

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

a:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 1002;
    position: relative;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-social-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.top-bar-social-link:hover {
    color: var(--color-white);
    transform: translateY(-1px);
}

.top-bar-social-link svg {
    display: block;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strength)) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.nav-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-img-main {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Specific filter if needed for dark text on light bg, but logo.webp seems to have red icon */
.logo:hover .logo-img-main {
    transform: scale(1.05);
}

.logo-img-footer {
    height: 90px;
    width: auto;
    object-fit: contain;
    /* Since logo has white text, it will look great on dark blue footer background */
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links .mobile-messenger-link {
    display: none;
}

.nav-links .mobile-phone-link {
    display: none;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-main);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Remove old underline, add new hover effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-messenger-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: #0084FF;
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.25);
    transition: var(--transition-fast);
    border: none;
}

.nav-messenger-link:hover {
    background: #0073e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 255, 0.35);
}

.nav-messenger-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(212, 14, 20, 0.2);
    transition: var(--transition-fast);
}

.btn-header-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 14, 20, 0.3);
    background-color: var(--color-primary-dark);
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Hero Modern Split Layout */
.hero-modern {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(212, 14, 20, 0.03), transparent 40%),
        radial-gradient(circle at bottom left, rgba(9, 42, 94, 0.02), transparent 40%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid-modern {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(212, 14, 20, 0.08);
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease forwards;
    border: 1px solid rgba(212, 14, 20, 0.1);
}

.hero-main-title {
    font-size: 3.6rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--color-secondary);
    letter-spacing: -0.04em;
}

.text-accent-red {
    color: var(--color-primary);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-text-body);
    max-width: 550px;
    margin-bottom: 45px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-modern-primary {
    background: var(--color-primary);
    color: white;
    padding: 18px 40px;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(212, 14, 20, 0.2);
    transition: var(--transition-smooth);
}

.btn-modern-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 14, 20, 0.35);
    background-color: var(--color-primary-dark);
}

.btn-modern-secondary {
    background: var(--color-secondary);
    color: white;
    padding: 18px 40px;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 46, 93, 0.2);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-modern-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 46, 93, 0.35);
    background-color: #001d3d;
}

.btn-modern-ghost {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-weight: 800;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-modern-ghost:hover {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: white;
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text-main);
}

.stat-item span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
    align-self: center;
}

/* Visual Side */
.hero-visual-content {
    position: relative;
    padding: 40px;
}

.main-image-card {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

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

.secondary-image-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 280px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: fadeUp 1.2s ease forwards 0.3s;
}

.secondary-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tertiary-image-card {
    position: absolute;
    top: 60px;
    left: -70px;
    width: 200px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    z-index: 1;
    animation: fadeUp 1.1s ease forwards 0.15s;
}

.tertiary-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--color-text-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 4;
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.8s;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 14, 20, 0.4);
}

.btn-red {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(212, 14, 20, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-red:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 14, 20, 0.3);
}

.btn-red svg {
    transition: transform 0.3s ease;
}

.btn-red:hover svg {
    transform: translateX(4px);
}

/* Redesigned Locations Section */
.locations {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-bold {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.location-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.location-image {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    /* Focus on faces in the upper part */
    transition: transform var(--transition-smooth);
}

.location-img-portrait {
    object-position: 50% 5% !important;
    /* Specific focus for more vertical photos */
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(212, 14, 20, 0.3);
}

.location-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.location-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.2rem;
}

.info-item .text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.btn-red-pill {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 15px rgba(212, 14, 20, 0.2);
    transition: var(--transition-fast);
}

.btn-red-pill:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 14, 20, 0.3);
}

/* Trust Modern Section */
.trust-modern {
    padding: 120px 0;
    overflow: hidden;
}

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

.trust-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-text-main);
}

.trust-lead {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 45px;
    line-height: 1.7;
}

.trust-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-red {
    background: #FFEBED;
    color: var(--color-primary);
}

.circle-blue {
    background: #E6F3FE;
    color: var(--color-secondary);
}

.circle-heart {
    background: #FCE8F3;
    color: #DB2777;
}

.feature-desc h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.feature-desc p {
    font-size: 0.9rem;
    color: #777;
}

.trust-image-wrapper {
    position: relative;
}

.trust-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.salon-map-preview span {
    font-weight: 700;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Contact Page */
.contact-hero {
    padding: 130px 0 90px;
    background: linear-gradient(135deg, rgba(0, 46, 93, 0.92), rgba(0, 46, 93, 0.75)),
        url('tui_office_exterior_1.png') center/cover no-repeat;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 203, 244, 0.35) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.contact-hero .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--color-white);
    letter-spacing: -0.03em;
}

.contact-hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.contact-hero-actions .btn-modern-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-hero-actions .btn-modern-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.contact-hero-actions .btn-modern-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
    color: var(--color-white);
}

.contact-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.contact-hero-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 45px;
    color: var(--color-text-main);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(var(--blur-strength));
}

.contact-hero-card h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-hero-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.contact-hero-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-hero-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.contact-hero-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-secondary);
}

.contact-hero-item span {
    display: block;
    color: #666;
}

.contact-hero-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 46, 93, 0.08);
}

.contact-hero-icon svg {
    width: 20px;
    height: 20px;
}

.contact-highlights {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.contact-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-highlight-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.contact-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.contact-highlight-card p {
    color: #666;
    line-height: 1.7;
}

.contact-highlight-card a {
    color: var(--color-primary);
    font-weight: 700;
}

.contact-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(212, 14, 20, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-form-section {
    padding: 120px 0;
    background: var(--color-white);
}

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

.contact-form-card {
    background: var(--color-bg-light);
    border-radius: 28px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.contact-form-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-white);
    transition: var(--transition-fast);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 14, 20, 0.15);
}

.form-consent {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #555;
}

.form-consent input {
    margin-top: 4px;
}

.contact-form .btn-modern-primary {
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-form button.btn-modern-primary {
    border: none;
    cursor: pointer;
}

.contact-map-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

.contact-map {
    height: 320px;
    background: var(--color-bg-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-details {
    padding: 30px;
}

.contact-map-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.contact-map-details p {
    color: #666;
    margin-bottom: 20px;
}

.contact-locations {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.contact-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-location-card {
    background: var(--color-white);
    border-radius: 22px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
}

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

.contact-location-card h3 {
    font-size: 1.4rem;
    color: var(--color-secondary);
}

.contact-location-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    padding: 80px 0 40px;
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-branding p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-contact-pill svg {
    width: 18px;
    height: 18px;
}

.footer-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.footer-privacy:hover {
    color: var(--color-accent);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-meta span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: var(--transition-fast);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(212, 14, 20, 0.3);
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-grid-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .trust-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: 0;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        transition: height 0.35s ease, opacity 0.2s ease;
        gap: 4px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 0 0;
        border-top: 1px solid var(--color-border);
        opacity: 0;
    }

    .nav-links.open {
        height: auto;
        max-height: 400px;
        padding: 14px 16px 20px;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.open li:nth-child(1) {
        transition-delay: 0.04s;
    }

    .nav-links.open li:nth-child(2) {
        transition-delay: 0.08s;
    }

    .nav-links.open li:nth-child(3) {
        transition-delay: 0.12s;
    }

    .nav-links.open li:nth-child(4) {
        transition-delay: 0.16s;
    }

    .nav-links a {
        display: block;
        padding: 14px 16px;
        width: 100%;
        border-radius: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--color-secondary);
        background: rgba(0, 46, 93, 0.04);
    }

    .nav-links a.active {
        background: rgba(212, 14, 20, 0.12);
        color: var(--color-primary);
    }

    .nav-links .mobile-messenger-link {
        display: block;
        padding: 16px 20px;
        margin: 6px 0 0;
        border-radius: 999px;
        background: #0084FF;
        color: var(--color-white);
        font-weight: 900;
        letter-spacing: 0.02em;
        box-shadow: 0 10px 25px rgba(0, 46, 93, 0.25);
    }

    .nav-links .mobile-phone-link {
        display: block;
        padding: 14px 20px;
        margin: 8px 0 0;
        border-radius: 999px;
        background: var(--color-primary);
        color: var(--color-white);
        font-weight: 900;
        letter-spacing: 0.02em;
        box-shadow: 0 8px 20px rgba(212, 14, 20, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .nav-links .mobile-messenger-link:visited {
        color: var(--color-white);
    }

    .nav-links .mobile-phone-link:visited {
        color: var(--color-white);
    }

    .nav-links .mobile-messenger-link:hover,
    .nav-links .mobile-messenger-link:focus,
    .nav-links .mobile-messenger-link:active {
        color: var(--color-white);
    }

    .nav-links .mobile-phone-link:hover,
    .nav-links .mobile-phone-link:focus,
    .nav-links .mobile-phone-link:active {
        color: var(--color-white);
    }

    .nav-links .mobile-messenger-link:active {
        transform: scale(0.98);
    }

    .nav-links .mobile-phone-link:active {
        transform: scale(0.98);
    }

    .nav-links .mobile-messenger-link svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        vertical-align: -3px;
    }

    .nav-actions {
        display: none;
    }

    .btn-header-contact {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Hero Responsive */
    .hero-modern {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-lead {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

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

    .hero-visual-content {
        padding: 20px;
    }

    .main-image-card {
        height: 350px;
    }

    .secondary-image-card {
        width: 150px;
        height: 150px;
        left: 0;
        bottom: -20px;
    }

    .tertiary-image-card {
        width: 130px;
        height: 160px;
        top: 10px;
        left: -10px;
        border-width: 6px;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
        font-size: 0.7rem;
        padding: 10px 15px;
    }

    /* Locations Responsive */
    .locations {
        padding: 60px 0;
    }

    .section-title-bold {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-card {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Trust Responsive */
    .trust-modern {
        padding: 60px 0;
    }

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

    .trust-title {
        font-size: 1.8rem;
    }

    .trust-lead {
        font-size: 1rem;
    }

    .messenger-cta {
        padding: 60px 0;
    }

    .messenger-cta-inner {
        padding: 32px 24px;
    }

    .messenger-cta-text h2 {
        font-size: 1.6rem;
    }

    .messenger-cta-text p {
        font-size: 1rem;
    }

    .trust-visual {
        order: -1;
    }

    /* Contact Page Responsive */
    .contact-hero {
        padding: 60px 0 50px;
    }

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

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero-card {
        padding: 30px 20px;
    }

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

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-form .btn-modern-primary {
        width: 100%;
        text-align: center;
    }

    .contact-map {
        height: 280px;
    }

    .salon-info-box {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
        flex-direction: row;
        margin-top: -50px;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .salon-card {
        height: auto;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #eee;
        box-shadow: none;
    }

    .salon-image-wrapper {
        height: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        align-items: center;
    }

    .footer-meta {
        justify-content: center;
    }

    .footer-simple-container {
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-main-title {
        font-size: 1.7rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .btn-modern-primary,
    .btn-modern-secondary,
    .btn-modern-ghost {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title-bold {
        font-size: 1.5rem;
    }

    .messenger-cta-text h2 {
        font-size: 1.4rem;
    }

    .trust-title {
        font-size: 1.5rem;
    }

    .location-content h3 {
        font-size: 1.3rem;
    }

    .info-item .text {
        font-size: 0.9rem;
    }

    .btn-red-pill {
        font-size: 0.85rem;
        padding: 14px;
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-text {
        font-size: 0.75rem;
    }

    .logo-img-main {
        height: 70px;
    }

    .navbar {
        padding: 12px 0;
    }
}

/* Simple Minimalist Footer */
.footer-simple {
    background-color: var(--color-secondary);
    border-top: none;
    padding: 1.5rem 0;
    margin-top: auto;
}

/* Messenger CTA */
.messenger-cta {
    padding: 90px 0;
    background: radial-gradient(circle at top right, rgba(112, 203, 244, 0.18), transparent 55%),
        linear-gradient(135deg, rgba(212, 14, 20, 0.04), rgba(255, 255, 255, 0.9));
}

.messenger-cta-inner {
    background: var(--color-white);
    border-radius: 28px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.messenger-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 46, 93, 0.08);
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.messenger-cta-text h2 {
    font-size: 2.1rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.messenger-cta-text p {
    color: #666;
    max-width: 520px;
    font-size: 1.05rem;
}

.messenger-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(0, 46, 93, 0.2);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.messenger-cta-btn:hover {
    transform: translateY(-3px);
    background: #001d3d;
    box-shadow: 0 16px 35px rgba(0, 46, 93, 0.3);
}

.messenger-cta-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .messenger-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

.footer-simple-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-white);
    opacity: 0.9;
}

.footer-copyright a {
    color: var(--color-primary);
}

.footer-copyright a:hover {
    color: #ff5a5f;
}

.footer-social-row {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: var(--color-white);
    transition: var(--transition-fast);
    opacity: 0.8;
}

.footer-social-link:hover {
    color: var(--color-primary);
    opacity: 1;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .footer-simple-container {
        flex-direction: row;
    }
}
