/* ═══════════════════════════════════════════════════════════════════════════
   Red Rok Remodel - Custom Stylesheet
   Version: 1.0.0
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties (Design Tokens) ───────────────────────────────── */
:root {
    /* Colors */
    --rr-dark:          #1a1a1a;
    --rr-darker:        #111111;
    --rr-darkest:       #0a0a0a;
    --rr-orange:        #C1440E;
    --rr-orange-hover:  #D4561F;
    --rr-orange-light:  #e8602e;
    --rr-white:         #ffffff;
    --rr-off-white:     #f5f5f5;
    --rr-light-gray:    #e0e0e0;
    --rr-mid-gray:      #999999;
    --rr-text-gray:     #cccccc;
    --rr-text-dark:     #333333;

    /* Typography */
    --rr-font-heading:  'Playfair Display', Georgia, serif;
    --rr-font-body:     'Open Sans', 'Segoe UI', sans-serif;
    --rr-font-nav:      'Montserrat', 'Open Sans', sans-serif;

    /* Spacing */
    --rr-section-pad:   80px 0;
    --rr-container-max: 1200px;
    --rr-container-pad: 0 40px;

    /* Transitions */
    --rr-transition:    all 0.3s ease;
}

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--rr-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--rr-text-dark);
    background: var(--rr-white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--rr-orange-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rr-font-heading);
    line-height: 1.3;
    font-weight: 700;
}

.rr-container {
    max-width: var(--rr-container-max);
    margin: 0 auto;
    padding: var(--rr-container-pad);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-header {
    background: var(--rr-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rr-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.rr-logo img {
    height: 55px;
    width: auto;
    transition: var(--rr-transition);
}

.rr-logo:hover img {
    opacity: 0.85;
}

.rr-nav__menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.rr-nav__menu li a {
    font-family: var(--rr-font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--rr-text-gray);
    padding: 8px 12px;
    border-radius: 3px;
    transition: var(--rr-transition);
    white-space: nowrap;
}

.rr-nav__menu li a:hover,
.rr-nav__menu li a.active {
    color: var(--rr-orange);
}

/* Hamburger button */
.rr-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.rr-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.rr-nav__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--rr-white);
    border-radius: 2px;
    transition: var(--rr-transition);
}

.rr-nav__toggle.active .rr-nav__hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.rr-nav__toggle.active .rr-nav__hamburger span:nth-child(2) {
    opacity: 0;
}

.rr-nav__toggle.active .rr-nav__hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-footer {
    background: var(--rr-dark);
}

.rr-footer__contact {
    background: var(--rr-darker);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.rr-footer__contact-inner {
    font-family: var(--rr-font-body);
    font-size: 14px;
    color: var(--rr-text-gray);
}

.rr-footer__contact-inner strong {
    color: var(--rr-white);
}

.rr-footer__contact-inner a {
    color: var(--rr-orange);
}

.rr-footer__contact-inner a:hover {
    color: var(--rr-orange-hover);
    text-decoration: underline;
}

.rr-footer__separator {
    margin: 0 12px;
    color: var(--rr-mid-gray);
}

.rr-footer__copyright {
    background: var(--rr-darkest);
    padding: 12px 0;
    text-align: center;
}

.rr-footer__copyright p {
    font-size: 12px;
    color: var(--rr-mid-gray);
    letter-spacing: 0.3px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Label (Uppercase orange section label) ──────────────────────────────── */
.rr-label {
    font-family: var(--rr-font-nav);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rr-orange);
    margin-bottom: 10px;
    display: block;
}

/* ── Section Heading ─────────────────────────────────────────────────────── */
.rr-heading {
    font-family: var(--rr-font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--rr-orange);
    line-height: 1.2;
    margin-bottom: 20px;
}

.rr-heading--white {
    color: var(--rr-white);
}

.rr-heading--dark {
    color: var(--rr-text-dark);
}

.rr-heading--medium {
    font-size: 32px;
}

.rr-heading--small {
    font-size: 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.rr-btn {
    display: inline-block;
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid var(--rr-orange);
    color: var(--rr-orange);
    background: transparent;
    cursor: pointer;
    transition: var(--rr-transition);
    text-decoration: none;
}

.rr-btn:hover {
    background: var(--rr-orange);
    color: var(--rr-white);
}

.rr-btn--filled {
    background: var(--rr-orange);
    color: var(--rr-white);
    border-color: var(--rr-orange);
}

.rr-btn--filled:hover {
    background: var(--rr-orange-hover);
    border-color: var(--rr-orange-hover);
}

.rr-btn--white {
    border-color: var(--rr-white);
    color: var(--rr-white);
}

.rr-btn--white:hover {
    background: var(--rr-white);
    color: var(--rr-dark);
}

/* ── Star Ratings ────────────────────────────────────────────────────────── */
.rr-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    justify-content: center;
}

.rr-stars i {
    color: #f5a623;
    font-size: 22px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION (Shared pattern across pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-hero {
    display: flex;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.rr-hero__content {
    flex: 0 0 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--rr-off-white);
    position: relative;
    z-index: 2;
}

.rr-hero__content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--rr-text-dark);
    margin-bottom: 15px;
    max-width: 420px;
}

.rr-hero__image-wrap {
    flex: 0 0 55%;
    position: relative;
    background: var(--rr-dark);
    overflow: hidden;
}

.rr-hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.rr-hero__photo {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Social icons */
.rr-social {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.rr-social__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--rr-white);
    transition: var(--rr-transition);
    text-decoration: none;
}

.rr-social__icon--fb { background: #1877F2; }
.rr-social__icon--yt { background: #FF0000; }
.rr-social__icon--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.rr-social__icon--web { background: var(--rr-orange); }

.rr-social__icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}


/* ═══════════════════════════════════════════════════════════════════════════
   DARK INFO SECTION (Performance & Experience pattern)
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-dark-section {
    background: var(--rr-darker);
    color: var(--rr-white);
    padding: 70px 40px;
    text-align: center;
}

.rr-dark-section__label {
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rr-orange);
    margin-bottom: 15px;
}

.rr-dark-section__subtitle {
    font-family: var(--rr-font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--rr-text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* ── Icon Cards Grid ─────────────────────────────────────────────────────── */
.rr-icon-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.rr-icon-card {
    text-align: center;
    padding: 20px;
}

.rr-icon-card__icon {
    margin-bottom: 20px;
}

.rr-icon-card__icon svg,
.rr-icon-card__icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.rr-icon-card__icon i {
    font-size: 50px;
    color: var(--rr-orange);
}

.rr-icon-card__title {
    font-family: var(--rr-font-nav);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rr-white);
    margin-bottom: 12px;
}

.rr-icon-card__text {
    font-size: 14px;
    color: var(--rr-text-gray);
    line-height: 1.7;
}

/* House icon SVG (inline) */
.rr-house-icon {
    width: 65px;
    height: 65px;
}

.rr-house-icon path {
    fill: var(--rr-orange);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Service Cards (h21, h22, h23) ───────────────────────────────────────── */
.rr-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--rr-container-max);
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--rr-dark);
}

.rr-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--rr-transition);
}

.rr-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

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

.rr-service-card:hover img {
    transform: scale(1.05);
}

.rr-service-card__caption {
    text-align: center;
    padding: 15px;
    background: var(--rr-dark);
}

.rr-service-card__caption p {
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    color: var(--rr-orange);
    letter-spacing: 0.5px;
}

/* ── Image Slider (h31-h35) ──────────────────────────────────────────────── */
.rr-slider-section {
    background: var(--rr-white);
    padding: 60px 40px;
    text-align: center;
}

.rr-slider-section__title {
    font-family: var(--rr-font-heading);
    font-size: 28px;
    color: var(--rr-text-dark);
    margin-bottom: 30px;
}

.rr-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.rr-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rr-slider__slide {
    min-width: 100%;
    position: relative;
}

.rr-slider__slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.rr-slider__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--rr-white);
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.rr-testimonials {
    background: var(--rr-white);
    padding: 60px 40px;
}

.rr-testimonials__title {
    text-align: center;
    font-family: var(--rr-font-nav);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rr-text-dark);
    margin-bottom: 40px;
}

.rr-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--rr-container-max);
    margin: 0 auto;
}

.rr-testimonial {
    text-align: center;
    padding: 20px;
}

.rr-testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--rr-light-gray);
    margin: 0 auto 15px;
}

.rr-testimonial__text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.rr-testimonial__author {
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    color: var(--rr-text-dark);
}

.rr-testimonials__cta {
    text-align: center;
    margin-top: 40px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   WHY US PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Aesthetic Quote Band ────────────────────────────────────────────────── */
.rr-quote-band {
    background: var(--rr-darker);
    padding: 60px 40px;
    text-align: center;
}

.rr-quote-band__label {
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rr-orange);
    margin-bottom: 20px;
}

.rr-quote-band__text {
    font-family: var(--rr-font-heading);
    font-size: 17px;
    color: var(--rr-text-gray);
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

.rr-quote-band__text--bold {
    font-weight: 700;
    color: var(--rr-white);
    font-size: 16px;
}

/* ── Process Steps ───────────────────────────────────────────────────────── */
.rr-process {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.rr-process-step {
    padding: 30px 0 30px 40px;
    border-left: 3px solid var(--rr-light-gray);
    position: relative;
    margin-left: 40%;
}

.rr-process-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 35px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--rr-orange);
}

.rr-process-step__label {
    font-family: var(--rr-font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rr-mid-gray);
    margin-bottom: 5px;
}

.rr-process-step__title {
    font-family: var(--rr-font-heading);
    font-size: 24px;
    color: var(--rr-orange);
    margin-bottom: 15px;
}

.rr-process-step__text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 3D Rendering Grid ───────────────────────────────────────────────────── */
.rr-rendering {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: var(--rr-container-max);
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--rr-dark);
    color: var(--rr-white);
}

.rr-rendering__content {
    flex: 1;
}

.rr-rendering__label {
    font-family: var(--rr-font-nav);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rr-orange);
    margin-bottom: 8px;
}

.rr-rendering__title {
    font-family: var(--rr-font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--rr-white);
    margin-bottom: 15px;
}

.rr-rendering__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--rr-text-gray);
}

.rr-rendering__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rr-rendering__grid img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--rr-transition);
}

.rr-rendering__grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ── Coalesce Section ────────────────────────────────────────────────────── */
.rr-coalesce {
    display: flex;
    min-height: 500px;
    overflow: hidden;
}

.rr-coalesce__left {
    flex: 0 0 50%;
    padding: 60px;
    background: var(--rr-white);
}

.rr-coalesce__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.rr-coalesce__grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--rr-transition);
}

.rr-coalesce__grid img:hover {
    transform: scale(1.03);
}

.rr-coalesce__right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.rr-coalesce__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════════════════════
   KITCHEN REMODEL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-kitchen-hero__images {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rr-kitchen-hero__images img {
    width: 100%;
    object-fit: cover;
}

.rr-kitchen-hero__images img:first-child {
    flex: 2;
    max-height: 350px;
}

.rr-kitchen-hero__images img:last-child {
    flex: 1;
    max-height: 180px;
}

/* ── Design Team Split ───────────────────────────────────────────────────── */
.rr-split-section {
    display: flex;
    min-height: 450px;
    overflow: hidden;
}

.rr-split-section__content {
    flex: 0 0 45%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--rr-off-white);
}

.rr-split-section__image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.rr-split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rr-split-section__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.2), transparent);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BATHROOM REMODEL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-bathroom-cta {
    display: flex;
    gap: 0;
    min-height: 400px;
    overflow: hidden;
    background: var(--rr-off-white);
}

.rr-bathroom-cta__image {
    flex: 0 0 45%;
    overflow: hidden;
}

.rr-bathroom-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rr-bathroom-cta__content {
    flex: 0 0 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PROJECT GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Testimonial Blockquotes ─────────────────────────────────────────────── */
.rr-blockquote-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.rr-blockquote {
    padding: 30px 40px;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 1px solid var(--rr-light-gray);
}

.rr-blockquote__icon {
    font-size: 40px;
    color: var(--rr-mid-gray);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.rr-blockquote__text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.rr-blockquote__author {
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    color: var(--rr-text-dark);
}

/* ── Featured Gallery Cards ──────────────────────────────────────────────── */
.rr-featured-gallery {
    background: var(--rr-dark);
    padding: 60px 40px;
}

.rr-featured-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--rr-container-max);
    margin: 0 auto;
    align-items: start;
}

.rr-gallery-card {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--rr-transition);
}

.rr-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.rr-gallery-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.rr-gallery-card__content {
    padding: 20px;
}

.rr-gallery-card__title {
    font-family: var(--rr-font-heading);
    font-size: 18px;
    color: var(--rr-white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.rr-gallery-card__text {
    font-size: 13px;
    color: var(--rr-text-gray);
    line-height: 1.6;
}

.rr-featured-gallery__label-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.rr-featured-gallery__label-card .rr-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.rr-featured-gallery__label-card h3 {
    font-family: var(--rr-font-nav);
    font-size: 16px;
    font-weight: 700;
    color: var(--rr-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Image Grid Gallery ──────────────────────────────────────────────────── */
.rr-gallery-grid-section {
    padding: 60px 40px;
    background: var(--rr-off-white);
}

.rr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: var(--rr-container-max);
    margin: 0 auto;
}

.rr-gallery-grid__item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.rr-gallery-grid__item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rr-gallery-grid__item:hover img {
    transform: scale(1.08);
}

.rr-gallery-grid__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: var(--rr-transition);
}

.rr-gallery-grid__item:hover::after {
    background: rgba(193, 68, 14, 0.15);
}

/* Gallery Pagination */
.rr-gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.rr-gallery-pagination button {
    font-family: var(--rr-font-nav);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--rr-light-gray);
    background: var(--rr-white);
    color: var(--rr-text-dark);
    cursor: pointer;
    transition: var(--rr-transition);
    border-radius: 3px;
}

.rr-gallery-pagination button:hover,
.rr-gallery-pagination button.active {
    background: var(--rr-orange);
    color: var(--rr-white);
    border-color: var(--rr-orange);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT US PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.rr-contact-hero {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.rr-contact-hero__form-side {
    flex: 0 0 40%;
    padding: 60px;
    background: rgba(26, 26, 26, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.rr-contact-hero__image-side {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.rr-contact-hero__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rr-contact-hero__image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* ── Contact Form ────────────────────────────────────────────────────────── */
.rr-contact-form {
    background: var(--rr-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.rr-contact-form h2 {
    font-family: var(--rr-font-heading);
    font-size: 28px;
    color: var(--rr-text-dark);
    margin-bottom: 25px;
}

.rr-form-group {
    margin-bottom: 20px;
}

.rr-form-group label {
    display: block;
    font-family: var(--rr-font-nav);
    font-size: 13px;
    font-weight: 600;
    color: var(--rr-text-dark);
    margin-bottom: 6px;
}

.rr-form-group label .required {
    color: var(--rr-orange);
}

.rr-form-group input,
.rr-form-group textarea,
.rr-form-group select {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--rr-font-body);
    font-size: 14px;
    border: 1px solid var(--rr-light-gray);
    border-radius: 4px;
    background: var(--rr-white);
    color: var(--rr-text-dark);
    transition: var(--rr-transition);
}

.rr-form-group input:focus,
.rr-form-group textarea:focus {
    outline: none;
    border-color: var(--rr-orange);
    box-shadow: 0 0 0 3px rgba(193, 68, 14, 0.1);
}

.rr-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rr-form-group__phone {
    display: flex;
    gap: 10px;
}

.rr-form-group__phone select {
    flex: 0 0 100px;
}

.rr-form-group__phone input {
    flex: 1;
}

.rr-form-group__char-count {
    font-size: 12px;
    color: var(--rr-mid-gray);
    text-align: right;
    margin-top: 4px;
}

.rr-form-group__hint {
    font-size: 12px;
    color: var(--rr-mid-gray);
    margin-top: 2px;
}

.rr-contact-form .rr-btn {
    margin-top: 10px;
}

/* Form messages */
.rr-form-message {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
}

.rr-form-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.rr-form-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ── Contact Info Section ────────────────────────────────────────────────── */
.rr-contact-info {
    padding: 50px 60px;
    background: var(--rr-white);
}

.rr-contact-info h3 {
    font-family: var(--rr-font-heading);
    font-size: 28px;
    color: var(--rr-orange);
    margin-bottom: 15px;
}

.rr-contact-info a {
    display: block;
    margin-bottom: 5px;
}

.rr-contact-info p {
    font-size: 15px;
    color: var(--rr-text-dark);
    margin-bottom: 5px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tablet (max-width: 1024px) ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .rr-nav__toggle {
        display: block;
    }

    .rr-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--rr-dark);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .rr-nav.open {
        transform: translateY(0);
    }

    .rr-nav__menu {
        flex-direction: column;
        padding: 20px 30px;
        gap: 0;
    }

    .rr-nav__menu li a {
        display: block;
        padding: 12px 0;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .rr-hero {
        flex-direction: column;
        min-height: auto;
    }

    .rr-hero__content {
        flex: none;
        padding: 50px 40px;
    }

    .rr-hero__image-wrap {
        flex: none;
        min-height: 350px;
    }

    .rr-icon-cards {
        gap: 25px;
    }

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

    .rr-rendering {
        flex-direction: column;
    }

    .rr-coalesce {
        flex-direction: column;
    }

    .rr-coalesce__left,
    .rr-coalesce__right {
        flex: none;
    }

    .rr-coalesce__right {
        min-height: 350px;
    }

    .rr-split-section {
        flex-direction: column;
    }

    .rr-split-section__content,
    .rr-split-section__image {
        flex: none;
    }

    .rr-split-section__image {
        min-height: 350px;
    }

    .rr-bathroom-cta {
        flex-direction: column;
    }

    .rr-bathroom-cta__image,
    .rr-bathroom-cta__content {
        flex: none;
    }

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

    .rr-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rr-contact-hero {
        flex-direction: column;
    }

    .rr-contact-hero__form-side,
    .rr-contact-hero__image-side {
        flex: none;
    }

    .rr-contact-hero__image-side {
        min-height: 350px;
    }

    .rr-process-step {
        margin-left: 20%;
    }

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

/* ── Mobile (max-width: 640px) ───────────────────────────────────────────── */
@media (max-width: 640px) {
    :root {
        --rr-container-pad: 0 20px;
    }

    .rr-heading {
        font-size: 32px;
    }

    .rr-hero__content {
        padding: 40px 25px;
    }

    .rr-hero__content p {
        max-width: 100%;
    }

    .rr-hero__photo {
        width: 70%;
    }

    .rr-icon-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rr-service-cards {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .rr-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .rr-process-step {
        margin-left: 0;
    }

    .rr-rendering__grid {
        grid-template-columns: 1fr;
    }

    .rr-coalesce__left {
        padding: 40px 25px;
    }

    .rr-coalesce__grid {
        grid-template-columns: 1fr;
    }

    .rr-featured-gallery__grid {
        grid-template-columns: 1fr;
    }

    .rr-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rr-contact-hero__form-side {
        padding: 30px 20px;
    }

    .rr-contact-form {
        padding: 25px 20px;
    }

    .rr-dark-section {
        padding: 50px 20px;
    }

    .rr-quote-band {
        padding: 40px 20px;
    }

    .rr-split-section__content {
        padding: 40px 25px;
    }

    .rr-bathroom-cta__content {
        padding: 40px 25px;
    }

    .rr-slider-section {
        padding: 40px 20px;
    }

    .rr-footer__contact-inner {
        font-size: 12px;
    }

    .rr-footer__separator {
        display: block;
        margin: 5px 0;
        font-size: 0;
    }

    .rr-social__icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ── Lightbox (Gallery image zoom) ───────────────────────────────────────── */
.rr-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rr-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.rr-lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--rr-white);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--rr-transition);
    z-index: 10001;
}

.rr-lightbox__close:hover {
    color: var(--rr-orange);
}

.rr-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
