/* 
    Vistara Supplies Theme CSS
    Colors: 
    - Navy: #07164A
    - Gold: #B99045 / #C6A04D
    - White/Off-white: #FFFFFF / #F8F7F3
*/

:root {
    --navy: #07164A;
    --navy-light: #0b226b;
    --navy-dark: #040d2b;
    --gold: #B99045;
    --gold-light: #C6A04D;
    --gold-gradient: linear-gradient(135deg, #B99045 0%, #d8b871 100%);
    --navy-gradient: linear-gradient(135deg, #07164A 0%, #0b226b 100%);
    --off-white: #F8F7F3;
    --white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-light: #666666;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(7, 22, 74, 0.12);
    --shadow-gold: 0 10px 30px rgba(185, 144, 69, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 20px 0;
}

.bg-light {
    background-color: var(--off-white);
}

.bg-navy {
    background-color: var(--navy);
}

.text-gold {
    color: var(--gold) !important;
}

.text-white {
    color: var(--white) !important;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mr-2 {
    margin-right: 0.5rem;
}

.opacity-80 {
    opacity: 0.8;
}

.position-relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.gold-divider {
    height: 3px;
    width: 60px;
    background: var(--gold-gradient);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Button Hover Animation effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.btn:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(185, 144, 69, 0.4);
    color: var(--white);
}

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

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

.btn-gold-text {
    color: var(--gold);
    padding: 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold-text i {
    transition: var(--transition);
}

.btn-gold-text:hover i {
    transform: translateX(5px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* padding: 20px 0; */
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    /* padding: 15px 0; */
    box-shadow: var(--shadow-sm);
}

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

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
}

.custom-logo {
    transition: var(--transition);
}

.site-header.scrolled .custom-logo {
    filter: none;
}

.site-header.scrolled .site-title {
    color: #000000;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #000000;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.site-header.scrolled .nav-menu a {
    color: #000000;
}

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

.site-header.scrolled .nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu li.current-menu-item>a::after {
    width: 100%;
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #E6C27A 0%, #B99045 100%);
    color: var(--navy-dark) !important;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(185, 144, 69, 0.3);
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #F5D699 0%, #C6A04D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 144, 69, 0.4);
}

.btn-outline-gold {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white) !important;
    border: 1px solid rgba(185, 144, 69, 0.5);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.btn-outline-gold:hover {
    background: rgba(185, 144, 69, 0.2);
    border-color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-box {
    width: 24px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) var(--pseudo-transform, none);
    transition: var(--transition);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: inherit;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.site-header.scrolled .hamburger-inner,
.site-header.scrolled .hamburger-inner::before,
.site-header.scrolled .hamburger-inner::after {
    background-color: var(--navy);
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.mobile-menu-toggle {
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner,
.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::before,
.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    background-color: white !important;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hero Slider */
.hero-section {
    position: relative;
    padding-top: 210px;
    padding-bottom: 250px;
    overflow: hidden;
    background: radial-gradient(circle at right center, rgba(185, 144, 69, 0.15) 0%, transparent 60%),
        radial-gradient(circle at left bottom, rgba(7, 22, 74, 1) 0%, #040A18 100%);
    background-color: #040A18;
    /* Dark navy specifically for hero */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(4, 10, 24, 0.4), rgba(4, 10, 24, 0.4)), url('https://vistarasupplies.com/wp-content/uploads/2026/05/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-waves-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: url('../images/waves.svg') no-repeat bottom left;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.hero-slider,
.swiper-wrapper,
.hero-slide {
    height: auto;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 144, 69, 0.25) 0%, rgba(185, 144, 69, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-mockup-img {
    max-width: 120%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform: scale(1.1);
}

.placeholder-mockup {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(185, 144, 69, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(185, 144, 69, 0.5);
    backdrop-filter: blur(10px);
}

.slide-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.slide-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.slide-title .text-gold {
    color: var(--gold);
    /* font-style: italic; */
    font-weight: 600;
}

.fancy-divider {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
}

.fancy-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 144, 69, 0.5), transparent);
}

.fancy-divider i {
    color: var(--gold);
    font-size: 0.6rem;
    margin: 0 15px;
}

.slide-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

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

/* Custom Swiper Nav */
.custom-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev.custom-nav-btn {
    left: 20px;
}

.swiper-button-next.custom-nav-btn {
    right: 20px;
}

.custom-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* Swiper styling */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    border-color: var(--gold);
}

/* Floating Cards */
.hero-floating-cards-container {
    position: relative;
    z-index: 10;
    margin-top: 120px;
}

.hero-floating-cards {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.floating-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    width: 215px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 12px;
}

.floating-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.floating-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-5px);
    border-color: rgba(185, 144, 69, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(185, 144, 69, 0.2);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bg-red {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #FF922B 0%, #D9480F 100%);
}

.bg-purple {
    background: linear-gradient(135deg, #CC5DE8 0%, #862E9C 100%);
}

.card-text-wrapper {
    display: flex;
    flex-direction: column;
}

.card-text {
    color: var(--white);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.card-line {
    height: 2px;
    width: 30px;
    background: var(--gold);
    margin-top: 8px;
    border-radius: 2px;
    transition: var(--transition);
}

.floating-card:hover .card-line {
    width: 100%;
    background: var(--gold-light);
}

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

.swiper-slide-active .fade-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Features Section */
.features-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 0 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(7, 22, 74, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.glass-card:hover .feature-icon {
    background: var(--navy);
    color: var(--white);
}

.glass-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-visual {
    flex: 1;
}

.visual-placeholder {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.abstract-shape {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}

.abstract-shape::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(185, 144, 69, 0.2) 0%, transparent 60%);
    top: -25%;
    left: -25%;
}

.watermark-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* Catalogs Section */
.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.catalog-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.catalog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.catalog-image {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.placeholder-navy {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.2);
}

.placeholder-gold {
    background: var(--gold);
    color: rgba(255, 255, 255, 0.3);
}

.catalog-content {
    padding: 2.5rem 2rem;
    flex: 1;
}

.catalog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.catalog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Movements Section */
.movements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.dark-glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(185, 144, 69, 0.3);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dark-glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.movement-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.dark-glass-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.gold-line {
    height: 2px;
    width: 40px;
    background: var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.dark-glass-card:hover .gold-line {
    width: 80px;
}

.dark-glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Industry Section */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.industry-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--navy);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.industry-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

.industry-item:hover {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    position: relative;
    background: var(--navy-dark);
    color: var(--white);
    background-image: radial-gradient(circle at center, var(--navy) 0%, var(--navy-dark) 100%);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
}

/* Contact Section */
.premium-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(185, 144, 69, 0.1) 0%, transparent 70%);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-right {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.cf7-container .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1.5rem;
}

.cf7-container input[type="text"],
.cf7-container input[type="email"],
.cf7-container input[type="tel"],
.cf7-container input[type="number"],
.cf7-container textarea,
.cf7-container .wpcf7-form-control.wpcf7-text,
.cf7-container .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid rgba(7, 22, 74, 0.3);
    /* Darker, more visible border */
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    color: var(--navy);
    transition: var(--transition);
}

.cf7-container input::placeholder,
.cf7-container textarea::placeholder {
    color: rgba(7, 22, 74, 0.5);
    /* Clear placeholders */
}

.cf7-container textarea,
.cf7-container .wpcf7-textarea {
    min-height: 54px;
    height: 54px;
    resize: vertical;
}

.cf7-container input[type="text"]:focus,
.cf7-container input[type="email"]:focus,
.cf7-container input[type="tel"]:focus,
.cf7-container textarea:focus,
.cf7-container .wpcf7-text:focus,
.cf7-container .wpcf7-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(185, 144, 69, 0.25);
}

.cf7-container input[type="submit"],
.cf7-container .wpcf7-submit {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.cf7-container .wpcf7-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cf7-container p {
    margin-bottom: 0;
}

.rep-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--off-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    height: 100%;
    text-align: left;
}

.rep-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rep-title {
    display: inline-block;
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info-text {
    margin-bottom: 2rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group .label {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-group .value {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
    word-wrap: break-word;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

.info-group .value:hover {
    color: var(--gold);
}

.contact-actions {
    display: flex;
    width: 100%;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.site-footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

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

    .hero-section {
        height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .fancy-divider {
        margin: 0 auto 2rem auto;
    }

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

    .slide-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-right {
        margin-bottom: 2rem;
    }

    .hero-image-right::before {
        width: 400px;
        height: 400px;
    }

    .hero-floating-cards-container {
        position: relative;
        margin-top: 30px;
        bottom: 0;
    }

    .hero-floating-cards {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: column;
    }

    .catalogs-grid {
        grid-template-columns: 1fr;
    }

    .movements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .rep-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .contact-actions {
        justify-content: center;
    }
}

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

    .site-header {
        padding: 10px 0;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .custom-logo {
        width: 150px;
        height: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        padding-top: 60px;
        z-index: 999;
    }

    .nav-menu li {
        margin-bottom: 20px;
    }

    .nav-menu a {
        color: white !important;
        font-size: 1.5rem;
        font-weight: 500;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .cta-btn {
        display: none;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        background-color: var(--navy) !important;
    }

    .menu-open .hamburger-inner,
    .menu-open .hamburger-inner::before,
    .menu-open .hamburger-inner::after {
        background-color: var(--white) !important;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-visual {
        display: block !important;
        width: 100%;
    }

    .visual-placeholder {
        height: 350px;
        margin-top: 2rem;
        display: flex !important;
    }

    .hero-image-right::before {
        width: 250px;
        height: 250px;
    }

    .custom-nav-btn {
        display: none;
    }

    /* Hide swiper arrows on mobile */

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .movements-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

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

    .catalog-card {
        flex-direction: column;
    }

    .catalog-image {
        width: 100%;
        height: 200px;
    }

    .catalog-content {
        padding: 1.5rem;
    }

    .premium-card {
        padding: 1.5rem;
    }

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

    .rep-card {
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .rep-details h3 {
        font-size: 1.5rem;
    }

    .info-group .value {
        font-size: 1.1rem;
        word-wrap: break-word;
        word-break: break-all;
    }

    .floating-card {
        width: 100%;
    }

    .hero-floating-cards-container {
        display: none !important;
    }

    .contact-right {
        padding-top: 15px;
        padding: 0px;
    }
}

.gallery-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}