/* Modern Luxurious Contact Page Styles - Redesigned */

:root {
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-dark: #050505;
    --color-dark-soft: #121212;
    --color-dark-card: #1c1c1c;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
}

/* Base Styles */
body {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero-modern {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--color-dark);
    background-image: url('../images/slider/viterra-bathware-slider-8.webp'); /* Fallback */
    background-size: cover;
    background-position: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.hero-subtitle-modern {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

.hero-title-modern {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700; /* Regular weight for cleaner look */
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-modern {
    font-size: 1.1rem;
    color: var(--color-gray);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Container Section */
.contact-glass-container {
    padding: 0 20px 100px;
    margin-top: -100px; /* Overlap hero */
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.glass-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1200px;
    width: 100%;
    background: var(--color-dark-soft); /* Fallback */
    background: linear-gradient(135deg, rgba(28,28,28,0.9), rgba(10,10,10,0.95));
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border-radius: 0; /* Sharp edges for luxury */
    overflow: hidden;
}

/* Info Column */
.glass-info-col {
    padding: 60px;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid var(--glass-border);
}

.glass-info-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
}

.glass-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.glass-subtext {
    color: var(--color-gray);
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.glass-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glass-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.glass-icon-box {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.glass-icon-box:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.glass-info-text h5 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.glass-info-text p, .glass-info-text a {
    font-size: 1rem;
    color: var(--color-white);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.glass-info-text a:hover {
    color: var(--color-gold);
}

.glass-social-links {
    margin-top: 60px;
    display: flex;
    gap: 15px;
}

.glass-social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    color: var(--color-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.glass-social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* Form Column */
.glass-form-col {
    padding: 60px;
    background: transparent; /* Allows gradient to show */
}

.glass-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group-modern {
    position: relative;
    margin-bottom: 30px;
}

.form-input-modern {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-gray);
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input-modern:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

/* Floating Label Logic */
.form-label-modern {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--color-gray);
    pointer-events: none;
    font-size: 1rem;
    transition: 0.3s ease all;
}

.form-input-modern:focus ~ .form-label-modern,
.form-input-modern:not(:placeholder-shown) ~ .form-label-modern {
    top: -10px;
    font-size: 0.8rem;
    color: var(--color-gold);
}

.textarea-modern {
    resize: none;
    height: 100px;
}

.btn-submit-modern {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-submit-modern:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section-modern {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.map-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: var(--color-dark);
    color: var(--color-gold);
    padding: 15px 30px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--color-gold);
    pointer-events: none; /* Let clicks pass to map if needed, but here it acts as a label */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-section-modern:hover .map-overlay-text {
    opacity: 1;
}

.map-frame-modern {
    width: 100%;
    height: 100%;
    border: 0;
    transition: filter 0.5s ease;
}

.map-section-modern:hover .map-frame-modern {
    filter: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .contact-glass-container {
        padding: 0 10px 60px;
        margin-top: -50px;
    }

    .glass-card {
        grid-template-columns: 1fr;
    }

    .glass-info-col {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 40px 30px;
    }

    .glass-form-col {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }
}



/* SEO Brand Overview - Premium White Variant (From Catalogue) */
.seo-brand-overview.white-bg {
  background: #ffffff !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Subtle decorative background element */
.seo-brand-overview.white-bg::before {
  content: 'VITERRA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 15vw;
  color: rgba(0,0,0,0.02);
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.seo-brand-overview.white-bg .container {
  position: relative;
  z-index: 1;
}

.seo-brand-overview.white-bg .seo-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-brand-overview.white-bg .seo-title {
  color: #111 !important;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.seo-brand-overview.white-bg .seo-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 20px auto 0;
}

.seo-brand-overview.white-bg .seo-text {
  color: #555 !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.seo-brand-overview.white-bg .seo-text strong {
  color: #000 !important;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.seo-brand-overview.white-bg .seo-text strong::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.seo-brand-overview.white-bg .seo-text strong:hover {
  color: #aa8420 !important;
}

.seo-brand-overview.white-bg .seo-text strong:hover::after {
  opacity: 1;
  height: 2px;
}
