/*
==================================================
REAL MEDIA SERVICES WEBSITE STYLES
==================================================
Clean, minimalistic, and sophisticated design
Updated: 2025
==================================================
*/

/* ========================================
   CSS VARIABLES & GLOBAL STYLES
======================================== */

:root {
    /* Color Palette - Refined & Sophisticated */
    --charcoal: #1a1a1a;              /* Primary text, headlines */
    --slate: #374151;                  /* Navigation, secondary text */
    --stone: #4b5563;                  /* Body text, descriptions */
    --mist: #9ca3af;                   /* Light text, placeholders */
    --pearl: #f3f4f6;                  /* Section backgrounds */
    --cloud: #fafbfc;                  /* Page background */
    --white: #ffffff;                  /* Cards, content areas */
    
    /* Accent Colors */
    --logo-blue: #29a9e1;             /* Primary accent, CTAs */
    --terracotta: #cf6b3e;              /* Special accents (minimal use) */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing & Layout */
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: 0.3s ease;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--stone);
    background-color: var(--cloud);
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Global Scroll Behavior */
#contact {
  scroll-margin-top: 100px;
}

#about {
  scroll-margin-top: 100px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.top-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition);
}

.logo {
  font-size: 1.4rem;
  font-weight: var(--font-weight-semibold);
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}


.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
    margin-left: 40px;
}

.main-nav ul li:first-child {
    margin-left: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--slate);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    padding: 8px 0;
    display: block;
    transition: color var(--transition);
    position: relative;
}

.main-nav ul li a:hover {
    color: var(--logo-blue);
}

/* Navigation Underline Effect */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--logo-blue);
    transition: width var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: auto;
    width: max-content;
    padding: 8px 16px;
    box-shadow: var(--shadow-medium);
    z-index: 1;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    
}

.dropdown-content a {
    color: var(--charcoal);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition);
    text-align: center;
}


.dropdown-content a:hover {
    background-color: var(--pearl);
    color: var(--logo-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Create invisible bridge to prevent gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    display: block;
    z-index: 999;
}

/* Dropdown Arrow */
.dropdown > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.8rem;
    color: var(--mist);
    transition: transform var(--transition);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* ========================================
   HERO SLIDER
======================================== */

.hero-slider-section {
  width: 100%;
  height: 725px;
  margin-top: 88px; /* Aligns with fixed top menu bar */
  padding: 0;
  box-sizing: border-box;
  background-color: var(--cloud);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #cf6b3e; /* RMS accent line under the slider */
  background-color: #fcf4e8;
}

.slider-frame {
    width: 100%;
    height: 725px; /* 725 - 70 padding */
    overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  width: calc(1088px * 18); /* 9 originals + 9 duplicates */
  animation: scrollSlider 40s linear infinite;
}

.slider-track img {
  width: auto;
  height: 725px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1088px * 9)); }
}


/* ========================================
   TAGLINE SECTION (ENHANCED)
======================================== */

.intro-block {
  background: var(--charcoal);
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;

}

.intro-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cf6b3e, transparent);
}

.intro-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-content h2 {
    font-size: 2.8rem !important;
    margin-bottom: 24px;
    color: var(--terracotta);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--pearl);
    font-weight: var(--font-weight-normal);
}

/* ========================================
   CATEGORY SECTIONS
======================================== */


/* NEW SECTION STYLES */
.section {
    padding: 60px 20px 80px;
    scroll-margin-top: 100px;
}

.section-interior {
    background-color: var(--pearl);
    margin-top: 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0 80px;
}

.section-interior .main-title,
.section-interior .subtitle,
.section-interior .cards-grid,
.section-interior .cta-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
}

.section-exterior {
    background-color: #d6eaf8 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 60px 0 80px !important;
    scroll-margin-top: 100px;
}
.section-exterior .main-title,
.section-exterior .subtitle,
.section-exterior .cards-grid,
.section-exterior .cta-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
}
.section-addons {
    background-color: var(--pearl);
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 60px 0 80px !important;
}
.section-addons .main-title,
.section-addons .subtitle,
.section-addons .cards-grid,
.section-addons .cta-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
}

.main-image:hover {
    transform: scale(1.02);
}

.category-text {
    color: var(--stone);
    text-align: left;
}

.category-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 20px;
}

.category-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
}

.category-buttons .btn {
    flex: 1;
    max-width: 180px;
    text-align: center;
}

/* NEW CATEGORY STYLES */
.main-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--stone);
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.category-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
}

.card-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform var(--transition);
}

.card-image:hover {
    transform: scale(1.02);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-semibold);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: 4px;
}

.card-overlay a {
  color: white;
  text-decoration: none;
}

.card-overlay a:hover {
  color: white;
  text-decoration: underline;
}

.category-card:hover .card-overlay {
  opacity: 1;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

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

.card-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.card-description {
    color: var(--stone);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: var(--logo-blue);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* ADD-ONS SPECIFIC STYLES */
.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.addon-card:hover .addon-overlay {
    opacity: 1;
}

.addon-content {
    text-align: left;
}

.addon-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.addon-description {
    color: var(--stone);
    line-height: 1.6;
    font-size: 0.95rem;
}

.addon-description p {
    margin-bottom: 12px;
}

.addon-description p:last-child {
    margin-bottom: 0;
}

.addon-description strong {
    color: var(--charcoal);
    font-weight: var(--font-weight-semibold);
}
/* ========================================
   GALLERY LAYOUT
======================================== */

.category-gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.sample-tile {
    text-align: center;
    max-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition);
}

.sample-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.sample-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.sample-label {
    font-size: 0.9rem;
    margin: 0;
    padding: 16px;
    color: var(--charcoal);
    font-weight: var(--font-weight-medium);
    background: var(--white);
}

/* ========================================
   BUTTONS & INTERACTIVE ELEMENTS
======================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--logo-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--slate);
    border: 2px solid var(--pearl);
}

.btn-secondary:hover {
    border-color: var(--logo-blue);
    color: var(--logo-blue);
    background: rgba(37, 99, 235, 0.05);
}


/* ========================================
   ABOUT SECTION
======================================== */

.section-about {
    background-color: #d6eaf8;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 80px 80px;
    scroll-margin-top: 100px;
}

.section-about .main-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 60px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* OWNER CARD */
.about-owner-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 40px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-owner-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.owner-text {
    text-align: left;
}

.owner-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 20px;
}

.owner-profile {
    text-align: center;
    padding-top: 20px;
}

.owner-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--charcoal);
    margin: 0 auto 20px auto;
}

.owner-name {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    margin-bottom: 8px;
}

.owner-title {
    font-size: 1rem;
    color: var(--stone);
    font-weight: var(--font-weight-medium);
}

/* COMPANY CARD */
.about-company-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 40px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: center;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-company-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.company-text {
    text-align: left;
}

.company-heading {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.company-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 24px;
}

.services-highlights h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-weight: var(--font-weight-semibold);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.services-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--stone);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--logo-blue);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.services-list li strong {
    color: var(--charcoal);
    font-weight: var(--font-weight-semibold);
}

.company-commitment {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 0;
}

.cityscape-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* FAQ SECTION */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 50px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.faq-question {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    border-bottom: 1px solid var(--pearl);
}

.faq-answer {
    padding: 0 24px 24px;
    text-align: left;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--stone);
    margin: 0;
}

.faq-answer p + p {
    margin-top: 16px;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .section-about {
        padding: 40px 20px 60px;
    }
    
    .section-about .main-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .about-owner-card,
    .about-company-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .owner-text {
        text-align: center;
        order: 2;
    }
    
    .owner-profile {
        order: 1;
        padding-top: 0;
    }
    
    .owner-image {
        width: 150px;
        height: 150px;
    }
    
    .company-heading {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .company-intro {
        font-size: 1rem;
        text-align: center;
    }
    
    .services-highlights h3 {
        text-align: center;
    }
    
    .company-commitment {
        text-align: center;
    }
    
    .faq-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
     
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background-color: var(--pearl);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 30px;
}
.contact-section .main-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 60px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-content {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 50px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-small);
    border: 2px solid var(--pearl);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--cloud);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--logo-blue);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form .cta-button {
    margin-top: 16px;
    align-self: flex-start;
    min-width: 160px;
}

.map-section h3 {
    margin-bottom: 24px;
    color: var(--charcoal);
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
}

.map-embed {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: var(--border-radius-small);
    display: block;
    box-shadow: var(--shadow-light);
}

.map-info {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-top: 24px;
    line-height: 1.4;
    text-align: left;
    background: rgba(41, 169, 225, 0.1);
    padding: 20px;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--logo-blue);
    font-weight: var(--font-weight-medium);
}

.map-info strong {
    color: var(--charcoal);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px 60px;
    }
    
    .contact-section .main-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .map-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .map-embed {
        height: 250px;
    }
    
    .map-info {
        font-size: 0.8rem;
        padding: 16px;
        margin-top: 20px;
    }
}

/* ========================================
   COMBINED SOCIAL MEDIA & REVIEWS SECTION
======================================== */

.social-reviews-section {
    background-color: #d6eaf8;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 80px 80px;
    text-align: center;
}

.social-reviews-section .main-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 60px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.widget-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 40px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .social-reviews-section {
        padding: 40px 20px 60px;
    }

    .social-reviews-section .main-title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .widget-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}
/* ========================================
   FOOTER
======================================== */

/* COMPANY MOTTO IMAGE SECTION */
.motto-image-section {
    position: relative;
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/footer-property-image.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.motto-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.motto-text {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    white-space: nowrap;
}

.motto-subtitle {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .motto-image-section {
        height: auto !important;
        min-height: 125px !important;
        padding: 40px 20px !important;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/footer-property-image-mobile.jpg') center/cover !important;
    }
    
    .motto-text {
        font-size: 1.4rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .motto-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .motto-text {
        font-size: 1.2rem !important;
    }
    
    .motto-image-section {
        min-height: 180px !important;
        padding: 30px 15px !important;
    }
}

/* FOOTER WITH DARK BACKGROUND */
.site-footer {
    background-color: #1a1a1a !important;
    color: #f3f4f6;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
}

.site-footer p {
    font-size: 0.8rem;
    color: #cf6b3e;
    margin: 0;
}

.footer-social-icons {
    margin-bottom: 24px;
}

.footer-social-icons a {
    display: inline-block;
    margin: 0 12px;
    transition: transform 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
}

.footer-social-icons svg {
    fill: #cf6b3e !important;
    transition: fill 0.3s ease;
}

.footer-social-icons a:hover svg {
    fill: #29a9e1 !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px !important;
    }
    
    .footer-social-icons {
        margin-bottom: 20px !important;
    }
    
    .footer-social-icons a {
        margin: 0 8px !important;
    }
    
    .site-footer p {
        font-size: 0.75rem !important;
    }
}

/* ========================================
   SLIDE-IN POPUP (UPDATED)
======================================== */

.slide-offer {
    position: fixed;
    top: 85px;
    right: -400px;
    width: 320px;
    z-index: 9999;
    transition: right 0.5s ease;
}

.slide-offer.show {
    right: 25px;
}

.slide-card {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    font-family: var(--font-primary);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--charcoal);
    cursor: pointer;
    font-weight: bold;
    transition: color var(--transition);
}

.slide-close:hover {
    color: var(--logo-blue);
}

.slide-badge {
    background: rgba(41, 169, 225, 0.1);
    color: var(--logo-blue);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--charcoal);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 16px;
    color: var(--stone);
    margin-bottom: 25px;
    font-weight: var(--font-weight-medium);
}

.slide-price-container {
    background: linear-gradient(135deg, var(--logo-blue), #1e88e5);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.slide-price-main {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin: 0 0 5px 0;
    letter-spacing: -0.02em;
}

.slide-price-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: var(--font-weight-medium);
}

.slide-price-addon {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    display: inline-block;
}

.slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.slide-features li {
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.slide-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--logo-blue);
    font-weight: var(--font-weight-bold);
    font-size: 14px;
}

.slide-features li strong {
    color: var(--charcoal);
    font-weight: var(--font-weight-semibold);
}

.slide-button {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(207, 107, 62, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-button:hover {
    background: #b85a32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 107, 62, 0.4);
}

.slide-timer {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: var(--border-radius-small);
    padding: 12px;
    margin: 16px 0 0 0;
}

.timer-label {
    font-size: 10px;
    color: var(--stone);
    margin-bottom: 4px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: #ff4444;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    
    .top-menu-container .logo {
        display: block !important;
        font-size: 1.1rem;
        padding: 10px 25px !important;   
    }
    .logo img {
    height: 30px !important;
}
    
    /* MOBILE-ONLY: Hide slide-in coupon popup */
    .slide-offer {
        display: none !important;
    }
    
    /* MOBILE-ONLY: Show hamburger menu */
    .hamburger {
        display: block;
    }
    
    /* MOBILE-ONLY: Position hamburger in center */
    .top-menu-container {
        height: 30px !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 50px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all var(--transition);
    }
    
    /* MOBILE-ONLY: Hide navigation by default */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        padding: 20px;
        z-index: 999;
    }
    
    /* MOBILE-ONLY: Show navigation when active */
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-right: 0;
    }
    
    .main-nav ul li {
        margin-left: 0;
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: var(--pearl);
        margin-top: 5px;
        width: 100%;
    }
    
    .dropdown > a::after {
        display: none;
    }
    
    /* Hero Section */
    .hero-slider-section {
        height: 350px;
        padding-top: 60px;
    }
    
    /* Tagline */
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    /* MOBILE-ONLY: Make black section smaller */
    .intro-block {
        background: var(--charcoal);
        padding: 40px 20px 100px;
        margin-top: 0;
        text-align: center;
        position: relative;
    }

    .intro-block h2 {
        font-size: 1.4rem !important;
    }

    .intro-block p {
        font-size: 0.85rem !important;
    }
    
    /* Interior Photography Section Mobile Fixes */
    .section-interior {
        margin-left: calc(-50vw + 50%);
        width: 100vw;
    }
    
    .section-interior .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-interior .main-title,
    .section-interior .subtitle,
    .section-interior .cta-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-interior .main-title {
    font-size: 1.4rem;
} 

.section-exterior .cards-grid,
.section-addons .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

.section-exterior .main-title,
.section-exterior .subtitle,
.section-exterior .cta-container,
.section-addons .main-title,
.section-addons .subtitle,
.section-addons .cta-container {
    padding-left: 20px;
    padding-right: 20px;
}

.section-exterior .main-title,
.section-addons .main-title {
    font-size: 1.4rem;
}


    
    /* Category Sections */
    .category-block {
        padding: 60px 20px 40px;
    }
    
    .main-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .category-text {
        text-align: center;
    }
    
    .category-text h2 {
        font-size: 2rem;
    }
    
    .category-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .category-buttons .btn {
        max-width: 280px;
        width: 100%;
    }
    
    /* Gallery */
    .category-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid .service-item:nth-child(2) {
        align-self: start;
    }
    
    /* About */
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image-section {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 525px;
        padding-top: 30px;
    }

    .intro-block {
        background: var(--charcoal);
        padding: 80px 20px 100px;
        margin-top: 0;
        text-align: center;
        position: relative;
    }

    .services-grid {
        overflow-x: hidden;
    }

    .about-container {
        padding: 0 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .about-content {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        width: 100%;
    }

    .contact-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .services-block,
    .about-block,
    .contact-block,
    .reviews-block {
        padding: 60px 0;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .services-title,
    .about-content h2,
    .contact-container h2,
    .reviews-title {
        font-size: 1.6rem;
    }
    
    .category-text h2 {
        font-size: 1.7rem;
    }
    
    .main-card {
        padding: 20px;
    }
    
    .service-item {
        padding: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider-track {
        animation: scrollSlider 30s linear infinite;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

@media print {
    .top-menu-container,
    .slide-offer,
    .hero-slider-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .category-block {
        padding: 20px 0;
    }
}

/* === GALLERY TITLE & SUBTITLE – GLOBAL STYLING FOR ALL GALLERIES === */
h1.gallery-title {
    margin-bottom: 0.25rem !important;
}

p.gallery-subtitle {
    margin-top: 0 !important;
}

/* Mobile responsive - hide subtitle, smaller title */
@media (max-width: 768px) {
    p.gallery-subtitle {
        display: none !important;
    }
    
    h1.gallery-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    h1.gallery-title {
        font-size: 1.5rem !important;
    }
}

/* === Mobile Slider (Only visible below 768px) === */
@media (max-width: 768px) {
    .slider-frame.desktop-slider {
        display: none;
    }

    .slider-frame.mobile-slider {
        display: block;
        height: 350px;
        overflow: hidden;
        margin-top: 120px;
        
        
    }

    .slider-frame.mobile-slider .slider-track {
        display: flex;
        width: calc(525px * 8); /* 5 originals + 3 repeats */
        animation: scrollMobileSlider 25s linear infinite;
    }

    .slider-frame.mobile-slider .slider-track img {
        width: 525px;
        height: 350px;
        object-fit: cover;
        flex-shrink: 0;
        display: block;
        border-radius: 5px;
    }
}

@keyframes scrollMobileSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-525px * 9));
    }
}

/* === SLIDER VISIBILITY === */
.desktop-slider {
    display: block;
}

.mobile-slider {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }
}

/* === MOBILE WIDGET SCREENSHOT SUBSTITUTES === */
.widget-desktop { 
    display: block; 
}

.widget-mobile { 
    display: none; 
}

@media (max-width: 768px) {
    .widget-desktop { 
        display: none !important; 
    }

    .widget-mobile {
        display: block;
        text-align: center;
        margin: 20px auto 40px;
        padding: 0 20px;
    }

    .widget-mobile img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .widget-mobile img:hover {
        transform: scale(1.01);
    }

    .hero-slider-section {
        height: auto !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .slider-frame.mobile-slider {
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .slider-frame.mobile-slider .slider-track img {
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .map-info {
        font-size: 0.75rem !important;
        text-align: center;
        font-size: 0.85rem !important;
        color: #6b7280 !important;
        line-height: 1.5;
        text-align: center;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .slider-frame.mobile-slider .slider-track {
        animation-name: scrollMobileSlider !important;
        animation-duration: 30s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
    }
}

