/*
Theme Name: Premier Solutions 2026
Theme URI: https://premiersolutionsinc.net
Author: Premier Solutions
Author URI: https://premiersolutionsinc.net
Description: Executive recruiting theme for Premier Solutions — restaurant and hospitality management.
Version: 1.0.0
Text Domain: premier-solutions-2026
*/
/* ==========================================
   Premier Solutions - Shared Styles
   ========================================== */

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

:root {
    --gold: #D4AF37;
    --gold-light: #FFB81C;
    --navy: #003366;
    --slate-grey: #2C3E50;
    --dark-slate: #1A252F;
    --cool-grey: #4A5F73;
    --light-grey: #E8EEF2;
    --soft-white: #F7F9FB;
    --accent-blue: #4A90E2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--slate-grey);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 12px 60px;
    transition: padding 0.3s, background 0.3s;
}

.header.scrolled {
    padding: 8px 60px;
    background: rgba(26, 37, 47, 0.98);
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo { flex-shrink: 0; }

.logo img {
    height: 83px;
    transition: height 0.3s;
}

.header.scrolled .logo img {
    height: 68px;
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-shrink: 0;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s;
}

.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-phone {
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(74, 144, 226, 0.3);
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(74, 144, 226, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-nav.open { display: flex; opacity: 1; }

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 30px;
    transition: color 0.3s;
}

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

.mobile-nav .mobile-phone {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 180px 60px 80px;
    background: var(--dark-slate);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(212, 175, 55, 0.05));
    pointer-events: none;
}

.page-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.8;
}

/* ===== HOMEPAGE HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-bg-slide:nth-child(1) { background-image: url('https://premiersolutionsinc.net/wp-content/uploads/2022/12/video_poster.webp'); }
.hero-bg-slide:nth-child(2) { background-image: url('https://premiersolutionsinc.net/wp-content/uploads/2022/12/serv1.webp'); }
.hero-bg-slide:nth-child(3) { background-image: url('https://premiersolutionsinc.net/wp-content/uploads/2022/12/serv2.webp'); }
.hero-bg-slide:nth-child(4) { background-image: url('https://premiersolutionsinc.net/wp-content/uploads/2022/12/serv3.webp'); }
.hero-bg-slide:nth-child(5) { background-image: url('https://premiersolutionsinc.net/wp-content/uploads/2022/12/imgpsh_fullsize_anim-2-_1_.webp'); }

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.88), rgba(26, 37, 47, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero h1 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn-hero {
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s;
    letter-spacing: 1px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-slate);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-slate);
}

.btn-tips {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-slate);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-tips:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* ===== STATS ===== */
.stats-row {
    display: flex;
    gap: 80px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.stat-box {
    text-align: center;
    padding: 30px 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.section-pretitle {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 140px 60px;
    background: var(--slate-grey);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    pointer-events: none;
}

.about-text .section-pretitle { text-align: left; }
.about-text .section-title { text-align: left; font-size: 3.5rem; }

.about-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-text .highlight {
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}

/* ===== BENTO INDUSTRIES ===== */
.industries {
    padding: 140px 60px;
    background: var(--cool-grey);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s;
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.bento-card:hover img { transform: scale(1.15); }

.bento-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 35px;
    background: linear-gradient(to top, rgba(26, 37, 47, 0.95) 0%, rgba(26, 37, 47, 0.8) 50%, transparent 100%);
}

.bento-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
    line-height: 1.15;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 140px 60px;
    background: var(--slate-grey);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 60px 45px;
    text-align: center;
    transition: all 0.4s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
    background: rgba(74, 144, 226, 0.06);
}

.why-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.25);
}

.why-icon svg {
    width: 36px; height: 36px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ===== PROCESS TIMELINE ===== */
.process {
    padding: 140px 60px;
    background: var(--dark-slate);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 300px;
    bottom: 300px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline {
    max-width: 1200px;
    margin: 100px auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content { order: 2; }

.timeline-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    border: 3px solid var(--gold);
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
    line-height: 1;
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 140px 60px;
    background: var(--cool-grey);
}

.testimonial-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 100px auto 0;
}

/* For pages that don't use section-header above testimonials */
.testimonials .testimonial-masonry:first-child {
    margin-top: 0;
}

.testimonial-luxury {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(74, 144, 226, 0.25);
    padding: 60px;
    border-radius: 25px;
    position: relative;
    transition: all 0.4s;
}

.testimonial-luxury:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
}

.author-avatar {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-details strong {
    display: block;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ===== TIPS BANNER ===== */
.tips-banner {
    padding: 80px 60px;
    background: var(--dark-slate);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.tips-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tips-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.tips-inner h2 strong { color: var(--gold); font-weight: 600; }

.tips-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ===== CONTACT ===== */
.contact {
    padding: 140px 60px;
    background: var(--slate-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.contact-detail { margin-bottom: 30px; }

.contact-detail-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
    display: block;
}

.contact-detail a:hover { color: var(--gold); }

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    padding: 60px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-blue);
    background: rgba(74, 144, 226, 0.06);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* File upload styling */
.file-upload-area {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.03);
}

.file-upload-area:hover {
    border-color: var(--accent-blue);
}

.file-upload-area p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.file-upload-area input[type="file"] {
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-blue), #5BA3F5);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.5);
}

/* ===== BLOG ===== */
.blog {
    padding: 140px 60px;
    background: var(--dark-slate);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
}

.blog-card-body { padding: 40px 35px; }

.blog-tag {
    display: inline-block;
    background: rgba(74, 144, 226, 0.15);
    color: var(--accent-blue);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin-bottom: 25px;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover { color: var(--gold-light); }

.blog-link svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
}

.blog-link:hover svg { transform: translateX(4px); }

/* ===== CTA ===== */
.cta {
    padding: 140px 60px;
    background: linear-gradient(135deg, var(--accent-blue), #3A7BC8);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta h2 strong { font-weight: 700; color: var(--gold); }

.cta p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--soft-white);
    font-weight: 700;
    margin: 30px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-phone:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-slate);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 60px 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section {
    padding: 100px 60px;
}

.content-section.bg-slate { background: var(--slate-grey); }
.content-section.bg-dark { background: var(--dark-slate); }
.content-section.bg-cool { background: var(--cool-grey); }

.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.content-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--gold);
}

.content-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 40px;
    color: #fff;
}

.content-inner p {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 20px;
}

.content-inner strong {
    color: #fff;
    font-weight: 600;
}

.content-inner ul, .content-inner ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-inner li {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 10px;
}

.content-inner li strong {
    color: var(--gold);
}

.content-inner a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.content-inner a:hover { color: var(--gold); }

.content-inner .highlight-box {
    background: rgba(74, 144, 226, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.content-inner .highlight-box p {
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
}

.content-inner blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

/* ===== TEAM CARDS (About) ===== */
.team-section {
    padding: 100px 60px;
    background: var(--cool-grey);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.4s;
}

.team-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.1);
}

.team-photo {
    width: 250px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.team-info .team-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.team-info p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.team-info a {
    color: var(--accent-blue);
    text-decoration: none;
}

.team-info a:hover { color: var(--gold); }

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 144, 226, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 50px;
    margin: 50px 0;
}

.guarantee-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    margin-top: 0;
}

/* ===== REFERRAL BOX ===== */
.referral-box {
    background: linear-gradient(135deg, var(--accent-blue), #3A7BC8);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.referral-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.referral-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
    position: relative;
}

.referral-box p {
    color: rgba(255,255,255,0.85);
    position: relative;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .header { padding: 10px 40px; }
    .nav { display: none; }
    .menu-toggle { display: block; }
    .header-phone { display: none; }
    .hero { min-height: 90vh; padding-top: 130px; }
    .hero h1 { font-size: 4rem; }
    .about-inner { gap: 60px; }
    .about-text .section-title { font-size: 2.8rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }

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

    .timeline-item:nth-child(even) .timeline-content { order: 1; }
    .testimonial-masonry { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }

    .industries, .process, .testimonials, .cta, .about, .why-us, .contact, .blog {
        padding: 100px 40px;
    }

    .content-section { padding: 80px 40px; }
    .page-hero { padding: 160px 40px 60px; }
    .page-hero h1 { font-size: 3.5rem; }
    .team-card { grid-template-columns: 200px 1fr; gap: 35px; padding: 40px; }
    .team-photo { width: 200px; height: 250px; }
}

@media (max-width: 992px) {
    .about-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-text .section-title, .about-text .section-pretitle { text-align: center; }
    .about-text p { text-align: center; }
    .why-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .tips-inner { flex-direction: column; text-align: center; }
    .blog-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .team-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .team-photo { width: 200px; height: 250px; }
}

@media (max-width: 768px) {
    .header { padding: 10px 25px; }
    .logo img { height: 60px; }
    .hero { min-height: 80vh; padding: 120px 25px 60px; }
    .hero-badge { font-size: 0.75rem; padding: 8px 20px; letter-spacing: 2px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn-hero { padding: 16px 35px; font-size: 1rem; text-align: center; }
    .stats-row { flex-direction: column; gap: 25px; }
    .stat-box { padding: 20px 30px; }
    .stat-number { font-size: 2.5rem; }
    .section-pretitle { font-size: 0.8rem; }
    .section-title { font-size: 2.5rem; }
    .section-subtitle { font-size: 1rem; }

    .industries, .process, .testimonials, .cta, .footer, .about, .why-us,
    .contact, .blog, .tips-banner, .team-section {
        padding: 80px 25px;
    }

    .content-section { padding: 60px 25px; }
    .page-hero { padding: 130px 25px 50px; }
    .page-hero h1 { font-size: 2.5rem; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-card { height: 400px; }
    .process::before { display: none; }
    .timeline { margin-top: 60px; }
    .timeline-item { margin-bottom: 80px; }
    .timeline-number { width: 90px; height: 90px; font-size: 2.2rem; line-height: 1; }
    .timeline-content h3 { font-size: 2rem; }
    .timeline-content p { font-size: 1rem; }
    .testimonial-luxury { padding: 40px 30px; }
    .quote-mark { font-size: 5rem; top: 10px; left: 20px; }
    .testimonial-text { font-size: 1.05rem; }
    .author-avatar { width: 50px; height: 50px; font-size: 1.4rem; }
    .author-details strong { font-size: 1rem; }
    .tips-inner h2 { font-size: 2rem; }
    .contact-form { padding: 40px 25px; }
    .cta h2 { font-size: 2.8rem; }
    .cta p { font-size: 1.2rem; }
    .cta-phone { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .team-card { padding: 30px; }
    .content-inner h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .bento-card { height: 350px; }
    .page-hero h1 { font-size: 2rem; }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 450px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.4s, transform 0.4s;
    backdrop-filter: blur(20px);
}

.toast-visible {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: rgba(39, 174, 96, 0.95);
    color: #fff;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
}

.toast-error {
    background: rgba(231, 76, 60, 0.95);
    color: #fff;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.3);
}

.toast strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .toast {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col a,
    .footer-col p {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-tips {
        display: block;
        text-align: center;
        margin: 20px auto 0;
        width: 100%;
    }
}