/* contact.css - Contact Page Specific Styles */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.3;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #7a7a7a;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 0 0; */
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2a2a2a;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #2a2a2a;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2a2a2a;
}

/* Page Hero */
.page-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 10s ease;
}

.page-hero:hover .page-hero-image {
    transform: scale(1.05);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.breadscrub{
    padding: 10px 80px;
    text-decoration: none;
    background-color: #fafafa;
    
}

.breadscrub a{
    color: #000;
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Form Column */
.contact-form-column {
    background-color: #fff;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.form-subtitle {
    font-size: 1rem;
    color: #7a7a7a;
    font-weight: 300;
    line-height: 1.6;
}

.contact-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label::after {
    content: '*';
    color: #d9534f;
    margin-left: 4px;
    display: inline;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
    box-shadow: 0 0 0 1px rgba(42, 42, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2a2a2a;
}

.checkbox-item label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-item label::after {
    content: none;
}

.error-message {
    color: #d9534f;
    font-size: 0.8rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-submit {
    margin-top: 40px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.form-success p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-new-inquiry {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #2a2a2a;
    color: #2a2a2a;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-new-inquiry:hover {
    background-color: #2a2a2a;
    color: #fff;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #2a2a2a;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2a2a;
    font-size: 1rem;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.method-details p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.method-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

.showroom-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.showroom-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.showroom-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.showroom-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.showroom-link {
    display: inline-block;
    color: #2a2a2a;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.showroom-link:hover {
    color: #000;
    text-decoration: underline;
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-consultation:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.map-container {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 2px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.map-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background-color: #000;
}

.map-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.map-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-btn:hover {
    border-color: #999;
    color: #333;
}

.map-btn.active {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
    color: #fff;
}

/* partner  */

.partner-section {
  padding: 100px 8%;
  background: #f8f8f8;
}

.partner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.partner-content h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 12px;
}

.partner-content .subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 20px;
}

.partner-content .description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.partner-benefits li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.partner-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  padding: 14px 32px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn-outline {
  padding: 14px 32px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .partner-container {
    grid-template-columns: 1fr;
  }

  .partner-content h2 {
    font-size: 34px;
  }
}




/* Footer */
.footer {
  background-color: #2a2a2a;
  color: #fff;
  padding: 80px 150px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand */
.footer-logo {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.7;
  max-width: 320px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5c5c5;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: #fff;
  transform: translateY(-4px);
}

/* Links */
.footer-links {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.footer-column h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: #fff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .logo img{
    margin-left: 0px;
  }
    .page-title {
        font-size: 2.8rem;
    }
    
    .contact-main-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-column,
    .info-card {
        padding: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-top: -1px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }

     .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

 .footer{
  padding: 15px 0px;
 }
}

@media (max-width: 767px) {
     .logo img{
    margin-left: 0px;
  }
    .mobile-menu-btn {
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgb(255, 255, 255);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        z-index: 1000;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 500;
        color: #1a1a1a;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .page-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .contact-main-section,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-column,
    .info-card {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }

   .footer{
    padding: 15px 0px;
  }
  .footer-links {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    margin-top: 15px;
  }
}

@media (max-width: 575px) {
    .page-hero {
        height: 40vh;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .contact-form-column,
    .info-card {
        padding: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .showroom-item {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}