:root {
    --primary: #0A1128;
    --secondary: #1C2541;
    --accent: #C5A880;
    --accent-dark: #B3966E;
    --accent-light: #F8F5F0;
    --background: #FFFFFF;
    --surface: #F8FAFC;
    --text: #1C2541;
    --text-muted: #5C677D;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(10, 17, 40, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(10, 17, 40, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(10, 17, 40, 0.08);
    --shadow-gold: 0 8px 20px rgba(197, 168, 128, 0.2);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.secondary-bg {
    background: linear-gradient(135deg, #FDFDFD 0%, var(--accent-light) 100%);
}

.tertiary-bg { 
    background-color: var(--primary); 
    color: var(--white); 
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-content .logo {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loader-content .logo span {
    color: var(--accent);
    font-weight: 300;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--accent);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary) !important;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Header */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition);
}

header.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

header.scrolled .logo-img {
    height: 50px;
}
header.scrolled .logo-link {
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    flex-shrink: 0;
}

.logo span {
    font-weight: 300;
    color: var(--accent);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 52px;
}

.nav-container-right {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

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

.nav-links a.contact-btn {
    margin-left: 1.5rem;
    padding: 0.85rem 2.2rem !important;
    line-height: 1.2 !important;
    display: inline-block !important;
}

.contact-btn::after {
    display: none !important;
}

/* Cookie Notice */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 2000;
    transform: translateY(100%);
    border-top: 2px solid var(--accent);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.banner-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.text-link {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--accent);
    opacity: 1;
}

.btn-sm { padding: 0.5rem 1.5rem; font-size: 0.9rem; }

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #FAFAFA;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(197, 168, 128, 0.15);
    color: var(--accent-dark);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.hero-image:hover::after {
    transform: translate(-10px, -10px);
}

.hero-image img {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

/* Hero benefits and stats */
.hero-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-benefits li {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-benefits li span {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta-note svg {
    color: var(--accent-dark);
    flex-shrink: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    padding-top: 2.5rem;
}

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

.stat-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 500;
}

/* About */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 1rem;
}

.section-title.text-center::after {
    margin: 1rem auto 0;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-slogan-wrapper {
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 1.75rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 2.5rem;
    position: relative;
}

.slogan-quote {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: -0.75rem;
    left: 0.5rem;
    opacity: 0.15;
    font-weight: 700;
}

.about-slogan {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.points-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.points-list li {
    padding-left: 2.5rem;
    position: relative;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--text);
}

.points-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
}

.person-card {
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.person-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 17, 40, 0.95) 100%);
    z-index: 1;
    transition: var(--transition);
}

.person-card:hover::after {
    background: linear-gradient(180deg, transparent 20%, rgba(10, 17, 40, 0.98) 100%);
}

.person-info {
    position: relative;
    z-index: 2;
}

.person-info h3 { 
    color: var(--white); 
    font-size: 2.2rem; 
    margin-bottom: 0.25rem;
}

.person-info .role { 
    display: block; 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.focus-tags span {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

/* Services - New Flex Layout for Centered Columns */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 1100px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 2.5rem auto 0;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(10, 17, 40, 0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 1 1 280px;
    max-width: 380px;
}

.services-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
    width: 100%;
    max-width: 960px !important;
    margin: 4rem auto 0 !important;
}

.services-grid-4 .service-card {
    max-width: none !important;
    flex: none !important;
    width: 100% !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-dark);
    transition: var(--transition);
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.service-card:hover .service-card-icon {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card ul li {
    font-size: 1rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* References Marquee */
.marquee-container {
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    background: transparent;
}

.marquee-content {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-content span {
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.6;
    color: var(--white);
    transition: opacity 0.3s;
}

.marquee-content span:hover {
    opacity: 1;
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Value Prop */
.section-title-light {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.vprop-detailed {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.vprop-block {
    border-left: 3px solid var(--accent);
    padding-left: 2.5rem;
    margin-bottom: 3rem;
}

.vprop-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

.vprop-block em {
    color: var(--text-muted);
    font-style: italic;
}

.vprop-footer-box {
    border: 1px solid var(--accent);
    padding: 1.75rem;
    max-width: 650px;
    margin: 4rem auto 0;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
}

.vprop-footer-box p {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: start;
}

.info-items {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .icon-box {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.08);
}

.info-item .icon-box svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-item a, .info-item span {
    font-size: 1.2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent);
}

/* Contact uvodni pogovor banner */
.free-call-box {
    display: flex;
    gap: 1.25rem;
    background-color: var(--accent-light);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.free-call-icon {
    color: var(--accent-dark);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.free-call-icon svg {
    width: 22px;
    height: 22px;
}

.free-call-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.free-call-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Services 4-Column Layout */
@media (max-width: 768px) {
    /* Hero changes centering for mobile */
    .hero-benefits {
        align-items: center;
        padding-left: 0;
    }
    .hero-cta-wrapper {
        align-items: center;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2rem;
    }
}

.premium-form {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.premium-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(10, 17, 40, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--surface);
    color: var(--primary);
}

.form-group textarea {
    resize: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #94A3B8;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 0.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-group label a:hover {
    color: var(--accent);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-with-icon .btn-icon {
    transition: transform 0.3s ease;
}

.btn-with-icon:hover .btn-icon {
    transform: translateX(4px);
}

.full-width { width: 100%; }

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 6.5rem 0 2rem;
    border-top: 2px solid var(--accent);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-legal p, .footer-links a {
    opacity: 0.7;
    margin-bottom: 0.75rem;
    display: block;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
}

.footer-links ul { list-style: none; }

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.875rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 1100px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 2.5rem auto 0;
    }
    .testimonial-card {
        max-width: none;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2.25rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 17, 40, 0.04);
    position: relative;
    transition: var(--transition);
    flex: 1 1 320px;
    max-width: 500px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.3);
}

.quote-icon {
    font-size: 6rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    opacity: 0.15;
    pointer-events: none;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text);
}

.testimonial-text-preview p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.25rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-card:hover .testimonial-more {
    color: var(--accent-dark);
    transform: translateX(4px);
}

.client-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.client-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Modal */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial-modal.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(10, 17, 40, 0.35);
    border: 1px solid rgba(197, 168, 128, 0.3);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-modal.active .testimonial-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--surface);
    border: 1px solid rgba(10, 17, 40, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg);
}

.quote-icon-modal {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.15;
    pointer-events: none;
}

.modal-quote-body p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.modal-quote-body p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-header {
    margin-bottom: 3.5rem;
    text-align: left;
}



.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: rgba(197, 168, 128, 0.25); /* Border line color */
    gap: 1px; /* Border thickness */
    border-top: 1px solid rgba(197, 168, 128, 0.25);
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item {
    background-color: var(--accent-light);
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #FAF8F4;
}

.faq-question {
    padding: 2.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-dark);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2.5rem;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 2.5rem 2.25rem;
    opacity: 1;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delayed {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-delayed.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax & Gradient Backgrounds */
.parallax-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 30%, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 0.8) 100%);
    z-index: -1;
    transition: transform 0.15s ease-out;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

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

    .hero-image {
        max-width: min(480px, calc(100% - 20px));
        margin: 0 auto;
        width: 100%;
    }

    .hero-image img {
        height: 450px;
        width: 100%;
        margin: 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .person-card {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
        min-height: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }



    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Prevent navigation wrap on narrow tablet screens */
    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a.contact-btn {
        margin-left: 0.5rem;
        padding: 0.5rem 1.25rem !important; /* Make it slightly more compact on tablets */
    }
}

@media (max-width: 768px) {
    header {
        height: 75px;
    }
    header.scrolled {
        height: 65px;
    }
    .logo-img {
        height: 50px;
    }
    .logo-link {
        height: 100%;
    }
    header.scrolled .logo-img {
        height: 42px;
    }
    header.scrolled .logo-link {
        height: 100%;
    }
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hero-cta .btn-primary {
        width: 100%;
        text-align: center;
    }
    .hero-cta-note {
        justify-content: center;
    }
    .section-padding {
        padding: 5rem 0;
    }

    /* Mobile Menu Navigation - Premium Full Screen Blur */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        padding: 3rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Stagger fade-in animation for mobile menu items */
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        width: 100%;
        text-align: center;
    }

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

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }

    .nav-links a {
        color: var(--white);
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
    }

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

    .nav-links a::after {
        background-color: var(--accent);
    }

    /* Toggle icon state active */
    .mobile-menu-toggle.active span {
        background: var(--white);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    .nav-links a.contact-btn {
        margin-left: 0;
        width: auto;
        min-width: 200px;
        text-align: center;
        font-size: 1.3rem;
        border: 2px solid var(--accent) !important;
        background-color: var(--accent) !important;
        color: var(--primary) !important;
        padding: 0.85rem 2rem !important;
        border-radius: 30px !important; /* Keep pill-shape on mobile */
    }

    .nav-links a.contact-btn:hover {
        background-color: transparent !important;
        color: var(--white) !important;
        border-color: var(--white) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    /* Person Card Mobile size */
    .person-card {
        min-height: 420px;
        max-width: 420px;
        margin: 0 auto;
        padding: 2.5rem 2rem;
    }

    .person-info h3 {
        font-size: 1.8rem;
    }

    .hero-image img {
        height: 350px;
    }

    /* Cookie notice mobile optimization */
    .banner-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .banner-btns {
        width: 100%;
        justify-content: space-between;
    }

    /* FAQ mobile optimization */
    .faq-grid {
        grid-template-columns: 1fr;
    }



    .faq-question {
        padding: 1.5rem 1.25rem;
    }
    .faq-answer {
        padding: 0 1.25rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.75rem;
    }

    /* Services grid mobile optimization */
    .services-grid-4, .services-grid-5 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Value Prop mobile optimization */
    .vprop-block {
        padding-left: 1.5rem;
        margin-bottom: 2rem;
    }
    .vprop-block p {
        font-size: 1.1rem;
    }

    /* Contact Form Mobile Optimization */
    .contact-grid {
        gap: 3rem;
    }

    .premium-form {
        padding: 2.25rem 1.75rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input, .form-group textarea {
        font-size: 16px; /* Prevents auto-zoom on iOS Safari */
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .hero-experience-card {
        padding: 1.5rem 1.25rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    .container {
        padding: 0 1.25rem;
    }

    .premium-form {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-sm);
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .hero-image {
        max-width: min(320px, calc(100% - 10px));
    }

    .hero-image img {
        height: 280px;
    }

    .hero-image::after {
        right: -10px;
        top: 10px;
    }

    /* FAQ small mobile optimization */
    .faq-question {
        padding: 1.25rem 1rem;
    }
    .faq-answer {
        padding: 0 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.5rem;
    }
}

/* Custom layout fixes for very small screen grid overflow */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

/* --- NEW CUSTOM STYLING BY ANTIGRAVITY --- */

/* Hero Experience Card */
.hero-experience-card {
    position: absolute;
    bottom: -20px;
    right: -25px;
    left: auto;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.25);
    z-index: 3;
    max-width: 250px;
    text-align: left;
    transition: var(--transition);
}
.hero-experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 15px 35px rgba(197, 168, 128, 0.25);
}
.hero-experience-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.65rem;
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.4rem;
}
.hero-experience-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.hero-experience-card ul li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-experience-card ul li span {
    color: #10B981; /* Green checkmark */
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .hero-experience-card {
        position: relative;
        bottom: 0;
        right: auto;
        left: auto;
        margin: 1.5rem auto 0;
        max-width: 280px;
        box-shadow: var(--shadow-md);
    }
}

/* Services Grid 5-Item Layout */
.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0;
}
.services-grid-5 .service-card {
    max-width: none;
    flex: none;
    width: 100%;
}

@media (min-width: 992px) {
    .services-grid-5 {
        grid-template-columns: repeat(6, 1fr);
    }
    .services-grid-5 .service-card:nth-child(1),
    .services-grid-5 .service-card:nth-child(2),
    .services-grid-5 .service-card:nth-child(3) {
        grid-column: span 2;
    }
    .services-grid-5 .service-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .services-grid-5 .service-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .services-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-grid-5 .service-card:nth-child(1),
    .services-grid-5 .service-card:nth-child(2),
    .services-grid-5 .service-card:nth-child(3),
    .services-grid-5 .service-card:nth-child(4) {
        grid-column: span 2;
    }
    .services-grid-5 .service-card:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 768px) {
    .services-grid-5 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-grid-5 .service-card {
        grid-column: span 1 !important;
    }
}

/* Values Grid and Value Card */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    text-align: left;
}
.value-card {
    background: var(--surface);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 17, 40, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-md);
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}
.value-card:hover::before {
    transform: scaleY(1);
}
.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.35);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}
.value-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .values-grid .value-card:nth-child(1),
    .values-grid .value-card:nth-child(2),
    .values-grid .value-card:nth-child(3) {
        grid-column: span 2;
    }
    .values-grid .value-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .values-grid .value-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .values-grid .value-card:nth-child(1),
    .values-grid .value-card:nth-child(2),
    .values-grid .value-card:nth-child(3),
    .values-grid .value-card:nth-child(4) {
        grid-column: span 2;
    }
    .values-grid .value-card:nth-child(5) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .values-grid .value-card {
        grid-column: span 1 !important;
    }
}

/* Yellow Highlight Box */
.free-call-box.yellow-box {
    background-color: #FFFDF0 !important;
    border: 2px dashed var(--accent) !important;
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.1);
    transition: var(--transition);
}
.free-call-box.yellow-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 168, 128, 0.2);
    border-color: var(--accent-dark) !important;
}
.free-call-box.yellow-box .free-call-icon {
    background-color: var(--accent) !important;
    color: var(--primary) !important;
}

/* Footer logo styles */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}
.footer-logo-link:hover {
    transform: scale(1.02);
}
.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}
.footer-logo-text-accent {
    color: var(--accent);
    font-weight: 300;
}


