/*
 * =============================================
 *   SKIN O HAIR — BRAND REVAMP
 *   Custom brand styles: soh-* prefix
 * =============================================
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-primary:      #7A5C4D;
    --color-primary-dark: #5E463A;
    --color-secondary:    #C7A56A;
    --color-bg:           #FAF8F5;
    --color-bg-alt:       #F4EDE4;
    --color-surface:      #FFFFFF;
    --color-beige:        #E8DDD1;
    --color-border:       #D9CEC3;
    --color-heading:      #3B2B24;
    --color-text:         #5F514A;
    --color-text-light:   #8E8077;
    --color-white:        #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Manrope', sans-serif;

    --fs-h1: clamp(42px, 6vw, 64px);
    --fs-h2: clamp(30px, 4vw, 48px);
    --fs-h3: clamp(24px, 3vw, 36px);
    --fs-h4: 28px;
    --fs-h5: 22px;
    --fs-h6: 18px;
    --fs-body-lg: 18px;
    --fs-body:    16px;
    --fs-small:   14px;

    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    --lh-heading: 1.15;
    --lh-body:    1.7;

    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  40px;
    --space-xl:  60px;
    --space-2xl: 80px;
    --space-3xl: 120px;

    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   30px;
    --radius-full: 999px;

    --shadow-sm: 0 5px 15px rgba(122, 92, 77, 0.05);
    --shadow-md: 0 10px 30px rgba(122, 92, 77, 0.08);
    --shadow-lg: 0 20px 50px rgba(122, 92, 77, 0.14);

    --transition: all 0.3s ease;
}

/* a:visited {
	color: var(--color-primary) !important;
} */

html {
  scroll-behavior: smooth !important; 
}

/* ============================================
   SECTION — universal padding
   ============================================ */
.section {
    padding: 100px 0;       /* Desktop */
}

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

@media (max-width: 768px) {
    .section {
        padding: 30px 10px; /* Mobile */
    }
}

/* ============================================
   BASE RESETS (scoped to page-wraper)
   ============================================ */
.page-wraper *, .page-wraper *::before, .page-wraper *::after {
    box-sizing: border-box;
}
.page-wraper {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
.page-wraper h1,
.page-wraper h2,
.page-wraper h3,
.page-wraper h4,
.page-wraper h5,
.page-wraper h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: var(--lh-heading);
    margin-top: 0;
}
.page-wraper img { max-width: 100%; height: auto; }
.page-wraper a { text-decoration: none; }
.page-wraper ul { list-style: none; margin: 0; padding: 0; }

/* a:visited { color: var(--color-secondary) !important;} */
/* Thank you and privacy pages */
section.main-banner.inner-banner {    padding: 130px 0px 50px;    text-align: center;    background: var(--color-bg-alt);}
h1.h1-title { font-size: 50px;}
.inner-page-text { padding: 50px 0px;}

/* Hide default WP footer */
footer#colophon { display: none !important; }

/* ============================================
   CONTAINER
   ============================================ */
.soh-container {
    max-width: 1320px;
    padding: 0 50px;
    margin: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.soh-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 30px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
}
.soh-btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 70, 58, 0.3);
}

.call-icon {
    transform: rotate(90deg);
}
.soh-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 30px;
    background: transparent;
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}
.soh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white) !important;
}
.soh-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 30px;
    background: var(--color-secondary);
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-secondary);
    transition: var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}
.soh-btn-gold:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white) !important;
    transform: translateY(-2px);
}
.soh-btn-full { width: 100%; }

/* ============================================
   SECTION HEAD
   ============================================ */
.soh-section-head { margin-bottom: 30px; }
.soh-section-head.center { text-align: center; }
.soh-section-head.center .soh-section-label { justify-content: center; }
.soh-section-head.center .soh-section-subtitle { margin-left: auto; margin-right: auto; }

.soh-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 14px;
}
.soh-section-label::before,
.soh-section-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--color-secondary);
    flex-shrink: 0;
}
.soh-section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--color-heading);
    margin-bottom: 16px;
    line-height: var(--lh-heading);
}
.soh-section-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-text-light);
    max-width: 600px;
    line-height: var(--lh-body);
    margin-bottom: 0;
}

/* ============================================
   HEADER
   ============================================ */
.soh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 10px;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-bg);
    /* padding: 14px 0; */
    box-shadow: 0 4px 24px rgba(59, 43, 36, 0.08);
}
/* .soh-header.scrolled {
    background: var(--color-bg);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(59, 43, 36, 0.08);
} */
.soh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.soh-logo {
    flex-shrink: 0;
    display: block;
    line-height: 0;
}
.soh-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}
/* .soh-header.scrolled .soh-logo img { height: 46px; } */

.soh-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.soh-nav-links li { position: relative; }
.soh-nav-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-heading);
    /* color: rgba(255, 255, 255, 0.88); */
    transition: var(--transition);
    padding: 4px 0;
    display: block;
    text-decoration: none !important;
}
.soh-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--color-secondary);
    transition: var(--transition);
}
.soh-nav-links a:hover { color: var(--color-secondary); }
.soh-nav-links a:hover::after { width: 100%; }

.soh-header.scrolled .soh-nav-links a { color: var(--color-heading); }
.soh-header.scrolled .soh-nav-links a:hover { color: var(--color-secondary); }

.soh-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.soh-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    /* color: rgba(255, 255, 255, 0.78); */
    transition: var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}
.soh-nav-phone i { font-size: 13px; color: var(--color-secondary); }
.soh-nav-phone:hover { color: var(--color-secondary); }
.soh-header.scrolled .soh-nav-phone { color: var(--color-text); }
.soh-header.scrolled .soh-nav-phone:hover { color: var(--color-secondary); }

.soh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    outline: none;
}
.soh-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: var(--transition);
}
.soh-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.soh-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.soh-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.soh-hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-heading);
}
.soh-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://wjf.fva.mybluehostin.me/test/wp-content/uploads/2026/07/home-bnr.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 7s ease;
}
.soh-hero.loaded .soh-hero-bg { transform: scale(1); }
.soh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(59, 43, 36, 0.86) 0%,
        rgba(59, 43, 36, 0.58) 50%,
        rgba(59, 43, 36, 0.22) 100%
    );
}
.soh-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    max-width: 680px;
}
.soh-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(199, 165, 106, 0.15);
    border: 1px solid rgba(199, 165, 106, 0.45);
    color: #ffe6bb;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}
.soh-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 7vw, 74px);
    font-weight: var(--fw-bold);
    color: var(--color-white) !important;
    line-height: 1.08;
    margin-bottom: 24px;
}
.soh-hero-title em {
    font-style: italic;
    color: var(--color-secondary);
}
.soh-hero-desc {
    font-size: var(--fs-body-lg);
    color: var(--color-white);
    line-height: var(--lh-body);
    margin-bottom: 44px;
    max-width: 520px;
}
.soh-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.soh-hero-stats {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 2;
}
.soh-hero-stat {
    padding: 24px 36px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.soh-hero-stat:last-child { border-right: none; }
.soh-hero-stat-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: var(--fw-bold);
    color: #ffd791;
    display: block;
    line-height: 1;
}
.soh-hero-stat-label {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white) !important;
    display: block;
    margin-top: 6px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.soh-about {

    background: var(--color-bg);
    overflow: hidden;
}
.soh-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.soh-about-images {
    position: relative;
    height: 580px;
}
/* .soh-about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 73%;
    height: 87%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
} */
.soh-about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 52%;
    height: 56%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-bg);
    display: block;
}
.soh-about-badge {
    position: absolute;
    top: 15%;
    right: -12px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--color-secondary), #b08848);
    color: var(--color-white);
    text-align: center;
    width: 116px; height: 116px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(199, 165, 106, 0.35);
    z-index: 3;
    border: 4px solid var(--color-bg);
}
.soh-about-badge-num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: var(--fw-bold);
    line-height: 1;
    display: block;
}
.soh-about-badge-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 4px;
    display: block;
}
.soh-about-text > p {
    font-size: var(--fs-body);
    color: var(--color-text);
    line-height: var(--lh-body);
    margin-bottom: 18px;
}
.soh-owner-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-secondary);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    margin: 28px 0;
    max-width: 300px;
    transition: var(--transition);
}
.soh-owner-card:hover { box-shadow: var(--shadow-sm); }
.soh-owner-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    flex-shrink: 0;
    overflow: hidden;
}
.soh-owner-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.soh-owner-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h6);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    display: block;
}
.soh-owner-role {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: block;
    margin-top: 3px;
}
.soh-about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 8px;
    margin-bottom: 32px;
}
.soh-about-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
}
.soh-about-highlight::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    flex-shrink: 0;
}
.soh-about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.soh-about-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    text-decoration: none !important;
    transition: var(--transition);
}
.soh-about-phone:hover { color: var(--color-secondary); }
.soh-about-phone i { color: var(--color-secondary); font-size: 18px; }
.soh-about-phone a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}
.soh-about-phone a:hover { color: var(--color-secondary); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.soh-services {

    background: var(--color-bg-alt);
}
.soh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.soh-service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px 36px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}
.soh-service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.soh-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.soh-service-card:hover::after { transform: scaleX(1); }
.soh-service-icon {
    width: 76px; height: 76px;
    background: var(--color-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    color: var(--color-primary);
    flex-shrink: 0;
}
.soh-service-icon svg {
    width: 32px;
    height: 32px;
    display: block;
    stroke: currentColor;
    transition: var(--transition);
}
.soh-service-card:hover .soh-service-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08);
}
.soh-service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    margin-bottom: 12px;
}
.soh-service-card p {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-text-light);
    line-height: var(--lh-body);
    margin-bottom: 22px;
}
.soh-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    transition: var(--transition);
    text-decoration: none !important;
}
.soh-service-link i { font-size: 10px; transition: var(--transition); }
.soh-service-link:hover { color: var(--color-primary); }
.soh-service-link:hover i { transform: translateX(4px); }

/* ============================================
   GALLERY / INSTAGRAM SECTION
   ============================================ */
.soh-gallery {

    background: var(--color-bg);
}
.soh-insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 44px;
}
.soh-insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.soh-insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.soh-insta-item:hover img { transform: scale(1.07); }
.soh-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 43, 36, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.soh-insta-item:hover .soh-insta-overlay { opacity: 1; }
.soh-insta-overlay i {
    font-size: 30px;
    color: var(--color-white);
    transform: scale(0.8);
    transition: var(--transition);
}
.soh-insta-item:hover .soh-insta-overlay i { transform: scale(1); }
.soh-insta-cta {
    text-align: center;
}
.soh-insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-right: 15px;
}
.soh-insta-handle i { color: var(--color-secondary); font-size: 22px; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.soh-testimonials {background: var(--color-beige);position: relative;padding-bottom: 90px;}
/* .soh-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
} */
 /* Slick slider container — replaces old CSS grid layout */
.soh-testi-slider {
    margin: 0 -14px;
}
.soh-testi-slider .slick-track {
    display: flex !important;
}
.soh-testi-slider .slick-slide {
    height: auto;
    display: flex !important;
}
.soh-testi-slide {
    padding: 0 14px;
    height: auto;
    display: flex;
    height: 100%;
}
.soh-testi-slide .soh-testi-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}
/* Slick arrows — brand colors */
.soh-testi-slider .slick-arrow {
    width: 44px;
    height: 44px;
    bottom: -15%;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.soh-testi-slider .next-arrow {
    left: 52% !important;
}

.soh-testi-slider .prev-arrow{
    right: 52% !important;
}
.soh-testi-slider .slick-arrow:before {
    color: var(--color-primary);
    font-size: 20px;
    opacity: 1;
}
.soh-testi-slider .slick-prev { left: -22px; }
.soh-testi-slider .slick-next { right: -22px; }
.soh-testi-slider .slick-arrow:hover {
    background: #d7aa9473 !important;
}
/* .soh-testi-slider .slick-arrow:hover:before {
    color: var(--color-white);
} */
/* Slick dots — brand colors */
.soh-testi-slider .slick-dots {
    bottom: -44px;
}
.soh-testi-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0.3;
}
.soh-testi-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--color-secondary);
}
.soh-testi-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.soh-testi-card:hover {
    box-shadow: var(--shadow-lg);
    /* transform: translateY(-6px); */
}
.soh-testi-quote {
    font-family: var(--font-heading);
    font-size: 90px;
    color: var(--color-secondary);
    opacity: 0.22;
    line-height: 0.7;
    display: block;
    margin-bottom: 18px;
    user-select: none;
}
.soh-testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--color-secondary);
    font-size: 14px;
}
.soh-testi-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text);
    line-height: var(--lh-body);
    margin-bottom: 28px;
    font-style: italic;
}
.soh-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}
.soh-testi-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    flex-shrink: 0;
    border: 2px solid var(--color-border);
    overflow: hidden;
}
.soh-testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.soh-testi-name {
    font-family: var(--font-heading);
    font-size: var(--fs-h6);
    font-weight: var(--fw-semibold);
    color: var(--color-heading);
    display: block;
}
.soh-testi-role {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-top: 3px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
    span.wpcf7-not-valid-tip { color: red; }

.soh-contact {
    background: var(--color-bg);
}
.soh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.soh-contact-left .soh-section-head { margin-bottom: 0; }
.soh-contact-info-items {
    display: grid;
    gap: 20px;
    margin-top: 36px;
}
.soh-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.soh-contact-info-icon {
    width: 46px; height: 46px;
    background: var(--color-beige);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--transition);
}
.soh-contact-info-item:hover .soh-contact-info-icon {
    background: var(--color-primary);
    color: var(--color-white);
}
.soh-contact-info-item h5 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 0 0 4px;
}
.soh-contact-info-item p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-heading);
    font-weight: var(--fw-medium);
    margin: 0;
}
.soh-contact-info-item p a {
    color: var(--color-heading);
    text-decoration: none !important;
    transition: var(--transition);
}
.soh-contact-info-item p a:hover { color: var(--color-secondary); }
.soh-contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    margin-top: 32px;
}
.soh-contact-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soh-contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: sticky;
    top: 100px;
}
.soh-contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-h4);
    color: var(--color-heading);
    margin-bottom: 28px;
}
/* Fallback Form */
.soh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.soh-form-group { margin-bottom: 30px; }
.soh-fallback-form input,
.soh-fallback-form textarea,
.soh-fallback-form select {
    width: 100%;
    padding: 10px 10px !important;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.soh-fallback-form input:focus,
.soh-fallback-form textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(199, 165, 106, 0.12);
    background: var(--color-white);
}
.soh-fallback-form input::placeholder,
.soh-fallback-form textarea::placeholder { color: var(--color-text-light); }
.soh-fallback-form textarea { resize: vertical; min-height: 130px; }
/* CF7 Overrides */
.soh-contact-form-wrap .wpcf7-form p { margin-bottom: 16px; }
.soh-contact-form-wrap .wpcf7-form input[type="text"],
.soh-contact-form-wrap .wpcf7-form input[type="email"],
.soh-contact-form-wrap .wpcf7-form input[type="tel"],
.soh-contact-form-wrap .wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border) !important;
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
}
.soh-contact-form-wrap .wpcf7-form input:focus,
.soh-contact-form-wrap .wpcf7-form textarea:focus {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 0 3px rgba(199, 165, 106, 0.12);
}
.soh-contact-form-wrap .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    border: 2px solid var(--color-primary) !important;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    -webkit-appearance: none;
}
.soh-contact-form-wrap .wpcf7-form input[type="submit"]:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.soh-footer {
    background: var(--color-heading);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}
.soh-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.soh-footer-logo { margin-bottom: 20px; }
.soh-footer-logo img {
    height: 52px;
    width: auto;
    display: block;
}
.soh-footer-tagline {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-white);
    margin-bottom: 30px;
}
.soh-footer-newsletter {
    display: flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.soh-footer-newsletter input {
    flex: 1;
    min-width: 0;
    padding: 13px 20px !important;
    background: transparent;
    border: none !important;
    outline: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--fs-small);
}
.soh-footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.38); }
.soh-footer-newsletter button {
    padding: 13px 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap;
}
.soh-footer-newsletter button:hover { background: var(--color-primary); }
.soh-footer-widget-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.soh-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.soh-footer-links a {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-surface);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}
.soh-footer-links a::before {
    content: '→';
    color: var(--color-secondary);
    font-size: 12px;
    transition: var(--transition);
}
.soh-footer-links a:hover { color: var(--color-secondary); padding-left: 4px; }
.soh-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.soh-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-surface);
}
.soh-footer-contact-item i {
    color: var(--color-secondary);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.soh-footer-contact-item a {
    color: var(--color-surface);
    text-decoration: none !important;
    transition: var(--transition);
}
.soh-footer-contact-item a:hover { color: var(--color-secondary); }
.soh-footer-bottom {
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.soh-footer-copy {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-white);
}
.soh-footer-copy a { color: var(--color-secondary); text-decoration: none !important; }
.soh-footer-copy a:hover { color: rgba(199, 165, 106, 0.8); }
.soh-footer-socials { display: flex; gap: 10px; }
.soh-footer-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none !important;
}
.soh-footer-socials a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.soh-scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    z-index: 999;
}
.soh-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.soh-scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .soh-about-grid{gap:40px}
    /* .soh-about-grid { grid-template-columns: 1fr; gap: 48px; } */
    .soh-about-images { order: -1; height: 440px; }
    .soh-about-badge { right: 20px; }
    .soh-services-grid { grid-template-columns: repeat(2, 1fr); }
    /* .soh-testi-grid { grid-template-columns: repeat(2, 1fr); } */
    .soh-testi-slider { margin: 0 -10px; }
.soh-testi-slide { padding: 0 10px; }
    .soh-contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .soh-contact-form-wrap { position: static; }
    .soh-footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
    .soh-footer-grid > div:first-child { grid-column: 1 / -1; }
    .soh-hero-stats { right: 0; width: auto; }
    .soh-hero-stat { padding: 18px 24px; }
    .soh-nav-phone { display: none; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

    /* Mobile Header */
    .soh-nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 20px;
        z-index: 999;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    .soh-nav-links.open { display: flex; align-items: center; padding:10px;  height: fit-content; top: 55px; background: var(--color-bg); }
    .soh-nav-links a {
        color: var(--color-heading) !important;
        font-size: 15px;
        letter-spacing: 2px;
    }
    .soh-nav-links a::after { background: var(--color-secondary); }
    .soh-hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    .nav-cta { display: none; }

    /* Hero */
    .soh-hero-content {padding: 100px 0 70px;max-width: 100%;}
    .soh-hero-title { font-size: clamp(36px, 9vw, 52px); }
    .soh-hero-desc { font-size: var(--fs-body); }
    .soh-hero-stats {display: none;}
    .soh-hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .soh-hero-actions a { width: 100%; justify-content: center; }

    /* About */
    .soh-about-images { height: 320px; }
    .soh-about-badge { width: 92px; height: 92px; right: 10px; }
    .soh-about-badge-num { font-size: 24px; }

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

    /* Gallery */
    .soh-insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Testimonials */
    /* .soh-testi-grid { grid-template-columns: 1fr; } */
    .soh-testi-slider { margin: 0; }
.soh-testi-slide { padding: 0 6px; }
.soh-testi-slider .slick-prev { left: 0; top: -38px; }
.soh-testi-slider .slick-next { right: 0; top: -38px; }

    /* Contact */
    .soh-form-group { margin-bottom: 15px; }
    span.wpcf7-not-valid-tip { color: red; margin-bottom: 0px !important; }
    .soh-contact-form-wrap { padding: 32px 24px; }
    .soh-form-row { grid-template-columns: 1fr; gap:0px; }

    /* Footer */
    .soh-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .soh-footer-grid > div:first-child { grid-column: 1; }
    .soh-footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
    .soh-footer-socials { justify-content: center; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
    .soh-about-grid { grid-template-columns: 1fr; gap: 30px;}
    .soh-about-images {  height: auto; }
    .soh-container { padding: 0 16px; }
    .soh-section-title { font-size: clamp(26px, 7vw, 36px); }
    .soh-insta-grid { grid-template-columns: repeat(2, 1fr); }
    .soh-hero-tag { font-size: 10px; letter-spacing: 1.5px; padding: 8px 16px; }
    .soh-contact-form-wrap { padding: 28px 18px; }
    .soh-service-card { padding: 32px 22px 28px; }
    .soh-testi-quote{ line-height: 0.5; margin-bottom: 0px; }
    .soh-footer-grid {  grid-template-columns: 1fr; gap: 10px; }
    .soh-footer {padding: 40px 0 0; }

}
