/*
Theme Name: BeTheme Child
Theme URI: http://muffingroup.com/betheme/
Description: BeTheme Child Theme (Final Layout & Centering Fix)
Author: Muffin Group
Author URI: http://muffingroup.com/
Template: betheme
Version: 3.1.0
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary: #0d2566;
    --primary-light: #112668;
    --primary-dark: #10225e;
    --accent: #10225e;
    --accent-light: #10225e;
    --dark: #0d142a;
    --dark-grey: #17213f;
    --light-grey: #ffffff;
    --text: #072379;
    --text-muted: #0d55e6;
    --gold: #d4af37;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- THEME RESET & LAYOUT FIX (CRITICAL) --- */
* {
    box-sizing: border-box !important;
}

html,
body {
    width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

#Header_wrapper,
#Header,
#Footer,
.footer-copy {
    display: none !important;
}

/* Hide ALL Theme Header/Footer */

/* Hide ALL Theme Header/Footer */

#Content,
#Content.seals-main-content,
#Content.seals-main-content .content_wrapper,
#Content.seals-main-content .sections_group,
.seals-custom-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    background-color: var(--white) !important;
}

/* Remove BeTheme's default padding/margin that might push content */
.sections_group {
    padding: 0 !important;
}

.content_wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

/* --- Global Styles --- */
html {
    background-color: var(--white) !important;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--white) !important;
    line-height: 1.6;
}

/* Force white background on all page wrappers from parent theme */
.be_page_wrapper,
.wrapper,
#page,
.site,
.page-wrapper,
main {
    background-color: var(--white) !important;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

section {
    padding: 120px 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Force children to center of the 100% width section */
    position: relative;
    clear: both;
}

.container {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    /* Absolute centering */
    display: block !important;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.text-white.section-subtitle {
    color: #ffffff !important;
    opacity: 1 !important;
}

.accent {
    color: var(--accent) !important;
}

.gold {
    color: var(--gold) !important;
}

.gold-bg {
    background-color: var(--gold) !important;
}

.text-white {
    color: var(--white) !important;
}

.white-fade {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* --- Custom Nav --- */
.seals-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

/* Fix for WordPress admin bar pushing header down */
.admin-bar .seals-nav {
    top: 32px;
}

.seals-nav .container-fluid {
    width: 100%;
    max-width: 1400px;
}

.seals-nav.scrolled {
    background: var(--white);
    padding: 12px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.seals-logo-img {
    height: 40px;
    width: 300px;
    max-width: 280px;
    display: block;
    transition: var(--transition);
}

.seals-nav.scrolled .seals-logo-img {
    height: 55px;
    /* Since logo has white text, invert it on the white scrolled header to keep it visible */
    filter: invert(1) brightness(0.2);
}

.footer-logo-img {
    height: 80px;
    width: 300px;
    max-width: 280px;
    margin-bottom: 20px;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-menu ul li {
    margin-left: 20px;
}

.desktop-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.9;
}

.seals-nav.scrolled .desktop-menu ul li a {
    color: var(--dark);
}

.desktop-menu ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-cta {
    background: var(--gold);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
}

/* --- Hero V3 --- */
.seals-hero-v3 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') center/cover no-repeat;
    padding: 0 !important;
}

/* ... and so on for all greenage- references ... */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 33, 63, 0.7) 0%, rgba(13, 20, 42, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    color: var(--white);
    text-align: left;
    padding-top: 180px;
    /* Increase spacing from top header */
}

.hero-content h5 {
    color: var(--white) !important;
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 75px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero-content .gold-text {
    color: var(--gold) !important;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn-sleek {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sleek.primary {
    background: var(--primary);
    color: var(--white);
}

.btn-sleek.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 33, 63, 0.3);
    background: var(--primary-light);
}

.btn-sleek.outline {
    border-color: var(--primary);
    color: var(--primary);
    margin-left: 0;
}

.btn-sleek.outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-sleek.outline-white {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    margin-left: 20px;
}

.btn-sleek.outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* --- Features Grid (Seals Advantage v3) --- */
.seals-features {
    background: var(--white) !important;
    padding: 120px 0 !important;
}

.seals-grid-v3 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
    margin-top: 60px;
}

.feature-card-v3 {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow like in screenshot */
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(23, 33, 63, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card-v3:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* --- Meet Our Team (Ethereal Glass Redesign v4) --- */
.glass-team-gallery {
    /* background: linear-gradient(180deg, #031349 0%, #112255 100%) !important; */
    background: var(--primary) !important;

    padding: 160px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Background Glow Blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

.blob-1 {
    background: var(--accent);
    top: -200px;
    left: -200px;
}

.blob-2 {
    background: #010821;
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    background: #0a2266;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2) translate(50px, -50px);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9) translate(-30px, 30px);
        opacity: 0.15;
    }
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.glass-card {
    position: relative;
    perspective: 1000px;
}

.glass-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover .glass-card-inner {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.glass-member-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.glass-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: all 0.8s ease;
}

.glass-content {
    padding: 30px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.glass-tag {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    opacity: 1;
}

.glass-name {
    color: var(--white) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.glass-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.glass-social {
    display: flex;
    gap: 20px;
}

.glass-social a {
    color: var(--white);
    opacity: 0.5;
    font-size: 16px;
    transition: all 0.3s ease;
}

.glass-social a:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.glass-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(23, 33, 63, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover .glass-card-inner {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(23, 33, 63, 0.2);
}

.glass-card:hover .glass-member-image img {
    filter: brightness(1.1);
    transform: scale(1.08);
}

.glass-card:hover .glass-glow {
    width: 200%;
    height: 200%;
    opacity: 1;
}

/* --- Team Redesign Layout --- */
.team-flex-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-images-side {
    flex: 1.2;
}

.team-images-side .glass-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
}

.team-text-side {
    flex: 0.8;
    order: 2;
    text-align: left;
}

@media (max-width: 991px) {
    .team-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .team-text-side {
        order: -1;
        text-align: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {

    .seals-grid-v3,
    .glass-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {

    .seals-grid-v3,
    .glass-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Stats counter --- */
.seals-stats {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    width: 100% !important;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Practice Areas (Absolute Responsive Fix) --- */
.seals-practice {
    background: var(--white) !important;
    /* Perfect match for screenshot */
    padding: 100px 0 !important;
}

.seals-practice .section-title {
    color: var(--dark) !important;
}

.practice-list-v4 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    /* Force 2 cols on desktop */
    gap: 0 80px !important;
    /* Wide gap for balanced look */
    max-width: 1200px !important;
    width: 100% !important;
    margin: 60px auto 0 !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

/* Mobile Polish */
@media (max-width: 991px) {
    .practice-list-v4 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 20px !important;
        margin-top: 40px !important;
    }
}

.practice-item-v4 {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle divider like in reference */
    transition: var(--transition);
}

.practice-item-v4:last-child {
    border-bottom: none;
}

.practice-item-v4 .item-icon {
    font-size: 45px;
    color: var(--primary);
    /* Official Theme Green */
    margin-right: 35px;
    min-width: 70px;
    display: flex;
    justify-content: center;
}

.practice-item-v4 .item-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.practice-item-v4:hover {
    transform: translateX(10px);
}


/* --- Review Our Expert Pedigree (Restored) --- */
.btn-sleek.large {
    padding: 18px 45px !important;
    font-size: 16px !important;
}

/* --- Meet Our Team (Signature Gallery Redesign v3 - DEPRECATED) --- */
/* (Removing old styles to keep logic clean) */

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    33% {
        transform: translate(10px, -15px) rotate(2deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0);
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

/* Sleek Button */
.glass-btn {
    background: rgba(242, 167, 0, 0.9) !important;
    backdrop-filter: blur(4px);
    font-weight: 600 !important;
    box-shadow: 0 10px 30px rgba(242, 167, 0, 0.2);
}

.glass-btn:hover {
    background: #F2A700 !important;
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(242, 167, 0, 0.3);
}

/* Mobile Responsiveness for Team */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .team-text-column {
        padding-left: 0;
    }

    .team-collage {
        height: 350px;
    }

    .team-blob {
        width: 80px;
        height: 80px;
    }
}

/* --- SEALS Footer (Modern Multi-Column) --- */
.seals-footer {
    background: #0d142a;
    color: rgba(255, 255, 255, 0.9);
    padding: 100px 0 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--white) !important;
}

.footer-about {
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-col h4 {
    color: var(--white) !important;
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a i {
    margin: 0 !important;
    /* Reset inherited footer icon margin */
    width: auto !important;
    /* Reset inherited footer icon width */
    font-size: 16px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.social.btn-sleek.primary:hover {
    background: var(--gold-light);
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.footer-col p {
    margin-bottom: 15px;
}

.footer-col i {
    color: var(--gold);
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-about {
        margin: 0 auto 30px;
    }

    .social-links {
        justify-content: center;
    }
}

.insights-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

.insight-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.insight-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.insight-content {
    padding: 30px;
    border-top: 4px solid var(--primary);
}

.insight-content .category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.insight-content h4 {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* --- Testimonials Slider --- */
.seals-testimonials {
    background: var(--light-grey);
    overflow: hidden;
    position: relative;
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    /* Remove constrained width to allow children to push it out */
    width: auto;
}

.testimonial-item {
    min-width: 100%;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    max-width: 900px;
    /* Center-focused layout */
}

.testimonial-item .quote-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 30px;
    opacity: 0.2;
}

.testimonial-item p {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-details {
    text-align: left;
}

.client-details strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

.client-details span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dde3e1;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 10px;
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    width: 100%;
    color: var(--primary);
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question span {
    flex: 1;
    word-break: break-word;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    padding-top: 0;
    line-height: 1.8;
    font-size: 17px;
    text-align: justify;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 20px;
    transition: all 0.5s ease;
}

/* --- CTA Box --- */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 50px;
    border-radius: 40px;
    color: var(--white);
    margin: 0 auto;
    max-width: 1100px;
    text-align: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(13, 20, 42, 0.4);
}

.cta-box h2 .accent {
    color: var(--accent);
}

.cta-box h2 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 45px;
}

/* --- Mobile Menu & Hamburger --- */
.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 2000;
    width: 35px;
    height: 25px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: absolute;
}

.seals-nav.scrolled .mobile-toggle span {
    background: var(--dark);
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    background: var(--dark) !important;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
    background: var(--dark) !important;
}

/* --- Animation classes --- */
.section-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Disable reveal temporarily to fix visibility */
.section-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Pass --- */
@media (max-width: 1199px) {

    .seals-grid-v3,
    .practice-grid-v3,
    .insights-grid,
    .seals-team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0 !important;
    }

    .container {
        width: 90% !important;
    }

    /* Nav Mobile Overlay */
    .mobile-toggle {
        display: block;
    }

    .desktop-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        visibility: hidden;
    }

    .desktop-menu.active {
        transform: translateY(0);
        visibility: visible;
    }

    .desktop-menu ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .desktop-menu ul li {
        margin: 15px 0;
        width: 100%;
    }

    .desktop-menu ul li a {
        color: var(--dark) !important;
        font-size: 32px;
        font-weight: 800;
        display: block;
        padding: 10px;
    }

    /* Hero Detail & Buttons */
    .hero-content {
        text-align: center;
        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .btn-sleek {
        flex: 1 !important;
        padding: 14px 10px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    /* Section Spacing */
    .seals-practice {
        margin-top: 40px !important;
    }

    /* Team Responsive */
    .seals-team-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .attorney-card {
        aspect-ratio: auto;
        height: 450px;
    }

    .attorney-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.85)) !important;
    }

    .attorney-image img {
        filter: grayscale(0%) !important;
    }

    /* Testimonial mobile centering fix: 100vw Slots */
    .seals-testimonials .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .testimonial-slider-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .testimonial-track {
        display: flex !important;
        gap: 0 !important;
        /* Items handle their own centering spacing */
        padding: 0 !important;
    }

    .testimonial-item {
        min-width: 100vw !important;
        /* Each slot is full screen width */
        max-width: 100vw !important;
        padding: 0 10vw !important;
        /* This creates the 10vw 'peek' area on each side */
        margin: 0 !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        /* Outer container transparent */
        box-shadow: none !important;
    }

    /* The actual box inside the slot */
    .testimonial-item .testimonial-box {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-item p {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    /* Practice Areas - List format handles its own responsiveness */
    .practice-list-v4 {
        padding: 0 15px !important;
    }

    .practice-item-v4 .item-icon {
        margin-right: 20px;
        min-width: 60px;
        font-size: 35px;
    }

    /* Recent Insights - Reverted to single row on mobile */
    .insights-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .insight-card {
        margin-bottom: 20px !important;
    }

    /* Grids Stack - Mobile Only Overrides */
    .seals-grid-v3,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Premium Visual FX (Vercel & Glow) --- */

.vercel-line {
    position: relative;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 40px 0;
}

.vercel-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.4),
            var(--gold),
            rgba(212, 175, 55, 0.4),
            transparent);
    animation: vercel-glow 4s infinite linear;
}

@keyframes vercel-glow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-1 {
    top: -10%;
    right: -10%;
}

.glow-2 {
    bottom: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(7, 35, 121, 0.15) 0%, transparent 70%);
}

.glass-card-inner {
    /* Existing styles maintained, but ensure relative for glow-spots if added inside */
    z-index: 1;
}

/* Add glow to footer */
.seals-footer {
    position: relative;
    overflow: hidden;
}

.testimonial-slider-container {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* Remove padding that causes push */
}

.testimonial-track {
    display: flex !important;
    width: 100% !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.testimonial-item {
    min-width: 100% !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

/* --- Nigerian Legal Services (Refined White Theme) --- */
.seals-detailed-services {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #ffffff !important;
    padding: 100px 0 !important;
    position: relative;
    z-index: 10;
}

.seals-detailed-services .section-title {
    color: var(--primary) !important;
}

.seals-detailed-services .section-subtitle {
    color: var(--dark-grey) !important;
    opacity: 0.8;
}

.service-grid-detailed {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 60px !important;
}

.service-card-v3 {
    display: flex !important;
    flex-direction: column !important;
    background: #f8f9fa !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    width: 100% !important;
    height: 220px !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #eee !important;
    /* Fallback grey if image fails */
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-grey);
}

.tag-bar {
    width: 3px;
    height: 15px;
    background: var(--gold);
}

.service-card-v3 h3 {
    color: var(--primary) !important;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-v3 p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-services-more {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-services-more:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
    .service-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid-detailed {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================================ */

/* --- About Hero (Compact, not full-screen) --- */
.seals-hero-v1.about-hero {
    background: linear-gradient(135deg, #031349 0%, #0d2261 60%, #0a1a4a 100%);
    min-height: 55vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px !important;
    position: relative;
    overflow: hidden;
}

.seals-hero-v1.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-content {
    text-align: center !important;
    color: var(--white);
}

.about-hero-content h5 {
    color: var(--gold) !important;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.9;
}

.about-hero-content h1 {
    font-size: clamp(38px, 7vw, 68px);
    color: var(--white) !important;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.about-hero-content p {
    font-size: 19px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite ease-in-out;
}

/* --- Vision / Advantage Section --- */
.seals-advantage {
    background: var(--white) !important;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantage-text h2 {
    margin-bottom: 10px;
}

.advantage-text .text-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.glass-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(13, 20, 42, 0.15);
}

.glass-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 34, 97, 0.15) 0%, rgba(13, 20, 42, 0.05) 100%);
    border-radius: 24px;
}

@media (max-width: 900px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .glass-image-container {
        max-height: 350px;
    }
}

/* --- Core Values / Practice Cards V3 --- */
.seals-core-values {
    background: #f8f9fc !important;
}

.practice-grid-v3 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-top: 60px;
    width: 100%;
}

.practice-card-v3 {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.practice-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(13, 34, 97, 0.12);
    border-color: var(--primary);
}

.practice-card-v3 .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 34, 97, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.practice-card-v3:hover .card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.practice-card-v3 h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--dark);
}

.practice-card-v3 p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 1199px) {
    .practice-grid-v3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .practice-grid-v3 {
        grid-template-columns: 1fr !important;
    }
}

/* seals-practice overrides for the Expert Assembly section */
.seals-practice .practice-grid-v3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
    .seals-practice .practice-grid-v3 {
        grid-template-columns: 1fr !important;
    }
}

/* --- WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-greeting {
    background: var(--white);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-greeting {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-button {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* --- Animation delays --- */
.delay-3 {
    animation-delay: 0.6s;
}

/* --- Animation helpers (pop-in, slide-up, fade-in) --- */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-pop-in {
    animation: popIn 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.animate-fade-in {
    animation: fadeIn 1s ease both;
}

.animate-up {
    animation: slideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* --- Footer --- */
.seals-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-about {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col.col-contact p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col.col-contact p i {
    color: var(--gold);
    font-size: 16px;
    min-width: 18px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 5px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col.col-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col.col-brand {
        grid-column: span 1;
    }
}
@media (max-width: 768px) {
    .seals-logo-img { height: 50px !important; width: auto !important; max-width: 180px !important; }
    .footer-logo-img { height: 55px !important; width: auto !important; max-width: 200px !important; }
}
/* Newsletter Modal Styles */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.newsletter-overlay.show {
    display: flex;
    opacity: 1;
}

.newsletter-modal {
    background: #f4f4f4;
    width: 900px;
    max-width: 95%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.newsletter-overlay.show .newsletter-modal {
    transform: translateY(0);
}

.modal-left {
    flex: 1;
    background: url('legal_modal_bg_new.png') center/cover no-repeat;
    position: relative;
    min-height: 500px;
}

.modal-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(244,244,244,1));
}

.modal-right {
    flex: 1.2;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: #000;
}

.modal-tag {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: stretch;
}

.modal-input {
    flex: 1;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    padding: 0 20px;
    height: 60px;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s;
    color: #1a1a1a;
}

.modal-input::placeholder {
    color: #aaa;
}

.modal-input:focus {
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

.modal-btn {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 0 35px;
    height: 60px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-btn:hover {
    background: #c5a02c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.35);
}

.modal-footer {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .modal-left {
        display: none;
    }
    .modal-right {
        padding: 40px 20px;
    }
    .modal-title {
        font-size: 2rem;
    }
    .modal-form {
        flex-direction: column;
    }
}
