
/* ========================================
   CONTACT PAGE SECTION
======================================== */
.contact-page-section {
    min-height: 100vh;
    padding: 100px 5% var(--s-xl);
    background: var(--light-bg);
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-header > p:first-child {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-header h1 {
    font-size: clamp(3.5rem, 4vw, 5.5rem);
    margin-bottom: 0.rem;
    color: var(--dark-green);
}

.contact-header > p:last-child {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Container - Like hero/newsletter */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    align-items: stretch;
    min-height: 600px;
}

/* LEFT SIDE: Contact Form */
.contact-form-wrapper {
    padding: clamp(40px, 6vw, 70px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    text-align: left;          /* Align text to left */
}

.contact-form-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;       /* Align text to left */
    margin-left: 0;         /* Remove extra left margin if any */
}


.form-subtitle {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    background: var(--white);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Character/Word Counter */
.char-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
}

/* Date Input Styling */
input[type="date"] {
    color: var(--text-dark);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
}

.form-buttons .btn i {
    font-size: 18px;
    color: #ffffff;
}

.submit-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
border: none;      /* Removes border */
  outline: none; 
  background: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  background: #4a5cc7;
  transform: translateY(-2px);
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.2);
    color: var(--white);
    border: 2px solid rgba(46, 204, 113, 0.5);
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: var(--white);
    border: 2px solid rgba(231, 76, 60, 0.5);
    display: block;
}

/* RIGHT SIDE: Contact Image */
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 35% center; /* Move image right */
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    display: block;
}

/* Contact Footer Text */
.contact-footer-text {
    text-align: center;
    margin-top: var(--s-lg);
    color: var(--text-dark);
    font-size: 16px;
}

.contact-page-section {
    padding-bottom: 5px;
}
/* ========================================
   CONTACT PAGE RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        min-height: 300px;
    }
    
    .contact-image img {
        border-radius: 0 0 var(--r-lg) var(--r-lg);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}
/* ===========================
   LOCATION SECTION
   =========================== */
.location-section {
    padding: var(--s-xl) 5%;
    background: var(--light-bg);
}

/* Location Header - Outside container */
.location-header {
    text-align: center;
    margin-bottom: var(--s-lg);
    color: var(--text-dark);
}

.location-header p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

/* Location Container - Like hero and newsletter */
.location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-green) 0%, var(--gradient-blue) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    align-items: stretch;
    min-height: 500px;
}

/* LEFT SIDE: Google Map */
.location-map {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r-lg) 0 0 var(--r-lg);  /* Only left corners rounded */
    display: block;
}

/* RIGHT SIDE: Contact Information */
.location-info {
    padding: clamp(36px, 5vw, 60px);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 450px;
}

/* Contact Details Container */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Individual Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.contact-text p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    color: var(--white);
}

/* Get Directions Button */
.location-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 14px 32px;
    font-size: 16px;
}

.location-info .btn i {
    font-size: 18px;
}

/* ===========================
   LOCATION RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .location-container {
        grid-template-columns: 2fr;
        min-height: auto;
    }
    
    .location-map {
        min-height: 400px;
    }
    
    .location-map iframe {
        border-radius: var(--r-lg) var(--r-lg) 0 0;  /* Top corners on mobile */
    }
    
    .location-info {
        text-align: center;
    }
    
    .location-info h3 {
        max-width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-info .btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .location-map {
        min-height: 300px;
    }
}
/* ===========================
   FOOTER
   =========================== */
footer {
  padding: 40px 5%; background: var(--light-bg); color: #08322f;
}
.footer-content {
  max-width:1200px; margin:0 auto; display:grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap:20px; align-items:start;
}
.footer-column h3 { color: #1d5f4f; margin-bottom:10px; font-weight:800; }
.footer-column a { color: #355f52; display:block; margin-bottom:8px; text-decoration:none; font-weight:600; }
.footer-bottom { text-align:center; margin-top:22px; padding-top:18px; border-top:1px solid rgba(0,0,0,0.04); color: #4a6b67; font-size:13px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .services-container, .about-section { grid-template-columns: 1fr; }
  .hero-container { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-content { grid-template-columns: 1fr; }
  .service-list { align-self:stretch; justify-self:stretch; }
  .nav-contact-btn { display:none; } /* hide big contact in smaller widths */
}

@media (max-width: 768px) {
  nav { padding: 10px 16px; width: 96%; }
  .nav-links { display:none; position:fixed; left:12px; right:12px; top:74px; background:var(--white); flex-direction:column; gap:12px; padding:16px; border-radius:14px; box-shadow:0 20px 60px rgba(0,0,0,0.18);}
  .nav-links.active { display:flex; }
  .menu-toggle { display:flex; margin-left:12px; }
  .logo img { height:42px; }
  .hero { padding-top:100px; min-height:600px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; gap:12px; }
  .service-list { order: 2; }
}

/* small phones */
@media (max-width:420px) {
  .hero-content h1 { font-size:1.8rem; }
  .nav-links { top:72px; left:8px; right:8px; }
  .footer-content { grid-template-columns: 1fr; }
}

/* ===========================
   small helpers & transitions
   =========================== */
a { color:inherit; }
.fade-in { animation: fadeIn .9s ease both; }
@keyframes fadeIn { from { opacity:0; transform: translateY(18px);} to { opacity:1; transform: translateY(0);} }