/* ============================================
   REMEDY CLOUD - Remedy Bilişim Cloud Platform
   Font: Poppins throughout
   Base palette: #e6ebfa (lavender)
   ============================================ */

/* ====== GLOBAL COLOR VARIABLES ====== */
:root {
    /* Brand / Accent - #e6ebfa lavender base */
    --rc-accent: #b7bbf8;
    --rc-accent-light: rgba(108, 114, 203, 0.12);
    --rc-accent-glow: rgba(108, 114, 203, 0.35);

    /* Dark section backgrounds - indigo-tinted */
    --rc-dark-navy: #6b63ff;
    --rc-darker-navy: #6b63ff;

    /* Text colors */
    --rc-text-dark: #1a1a2e;
    --rc-text-body: #555;
    --rc-text-muted: #4a4a5a;
    --rc-white: #fff;
    --rc-black: #000;

    /* Background colors */
    --rc-bg-white: #fff;
    --rc-bg-light: #e6ebfa;

    /* Border colors */
    --rc-border-light: #d0d5ea;
    --rc-border-lighter: #dfe3f5;

    /* White alpha variants (for dark sections) */
    --rc-white-80: rgba(255, 255, 255, 0.85);
    --rc-white-75: rgba(255, 255, 255, 0.8);
    --rc-white-65: rgba(255, 255, 255, 0.7);
    --rc-white-50: rgba(255, 255, 255, 0.55);
    --rc-white-35: rgba(255, 255, 255, 0.4);
    --rc-white-12: rgba(255, 255, 255, 0.15);
    --rc-white-10: rgba(255, 255, 255, 0.12);
    --rc-white-08: rgba(255, 255, 255, 0.1);
    --rc-white-06: rgba(255, 255, 255, 0.08);

    /* Overlay */
    --rc-overlay-banner: rgba(15, 15, 50, 0.5);
    --rc-overlay-hero: rgba(20, 20, 55, 0.8);
}

/* ====== SECTION SEAMLESS FLOW ====== */
.rc-banner,
.rc-about,
.rc-services-dark,
.rc-faq-area,
.rc-process-dark,
.rc-locations,
.rc-meeting {
    margin: 0;
    border: none;
    outline: none;
}

/* ====== SCROLL ANIMATIONS ====== */
.rc-anim {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.rc-anim.rc-visible {
    opacity: 1;
}

/* ====== CHILD STAGGER ANIMATIONS ====== */
@keyframes rcFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Initial hidden state for all animatable children */
.rc-anim h2,
.rc-anim h4,
.rc-anim h5,
.rc-anim > p,
.rc-anim .rc-checklist li,
.rc-anim .rc-banner-btn,
.rc-anim .rc-expertise,
.rc-anim .rc-about-thumb,
.rc-anim .rc-process-thumb,
.rc-anim .rc-faq-thumb img,
.rc-anim .rc-loc-img,
.rc-anim .rc-loc-info,
.rc-anim .rc-loc-info p,
.rc-anim .rc-contact-card,
.rc-anim .rc-process-intro {
    opacity: 0;
    transform: translateY(28px);
}

/* Animate when parent becomes visible */
.rc-visible h2           { animation: rcFadeUp 0.6s 0.05s ease-out forwards; }
.rc-visible h4           { animation: rcFadeUp 0.5s 0.1s ease-out forwards; }
.rc-visible h5           { animation: rcFadeUp 0.5s 0.15s ease-out forwards; }
.rc-visible .rc-expertise { animation: rcFadeUp 0.7s 0.15s ease-out forwards; }
.rc-visible .rc-about-thumb   { animation: rcFadeUp 0.8s 0.1s ease-out forwards; }
.rc-visible .rc-process-thumb { animation: rcFadeUp 0.8s 0.1s ease-out forwards; }
.rc-visible .rc-faq-thumb img { animation: rcFadeUp 0.8s 0.05s ease-out forwards; }
.rc-visible .rc-process-intro { animation: rcFadeUp 0.6s 0.2s ease-out forwards; }
.rc-visible .rc-loc-img  { animation: rcFadeUp 0.6s 0.05s ease-out forwards; }
.rc-visible .rc-loc-info { animation: rcFadeUp 0.6s 0.2s ease-out forwards; }

/* Paragraph stagger */
.rc-visible > p:nth-of-type(1) { animation: rcFadeUp 0.5s 0.1s ease-out forwards; }
.rc-visible > p:nth-of-type(2) { animation: rcFadeUp 0.5s 0.2s ease-out forwards; }
.rc-visible > p:nth-of-type(3) { animation: rcFadeUp 0.5s 0.3s ease-out forwards; }
.rc-visible > p:nth-of-type(4) { animation: rcFadeUp 0.5s 0.4s ease-out forwards; }
.rc-visible > p:nth-of-type(5) { animation: rcFadeUp 0.5s 0.5s ease-out forwards; }
.rc-visible > p:nth-of-type(6) { animation: rcFadeUp 0.5s 0.6s ease-out forwards; }

/* Checklist li stagger */
.rc-visible .rc-checklist li:nth-child(1) { animation: rcFadeUp 0.5s 0.08s ease-out forwards; }
.rc-visible .rc-checklist li:nth-child(2) { animation: rcFadeUp 0.5s 0.14s ease-out forwards; }
.rc-visible .rc-checklist li:nth-child(3) { animation: rcFadeUp 0.5s 0.20s ease-out forwards; }
.rc-visible .rc-checklist li:nth-child(4) { animation: rcFadeUp 0.5s 0.26s ease-out forwards; }
.rc-visible .rc-checklist li:nth-child(5) { animation: rcFadeUp 0.5s 0.32s ease-out forwards; }
.rc-visible .rc-checklist li:nth-child(6) { animation: rcFadeUp 0.5s 0.38s ease-out forwards; }

/* Contact card stagger */
.rc-visible .rc-contact-card:nth-child(1) { animation: rcFadeUp 0.6s 0.15s ease-out forwards; }
.rc-visible .rc-contact-card:nth-child(2) { animation: rcFadeUp 0.6s 0.3s ease-out forwards; }

/* Banner slide content animations (auto on load) */
.rc-banner-content h2 {
    animation: rcFadeUp 0.8s 0.3s ease-out both;
}
.rc-banner-content p {
    animation: rcFadeUp 0.8s 0.5s ease-out both;
}
.rc-banner-content .rc-banner-btn {
    animation: rcFadeUp 0.8s 0.7s ease-out both;
}

/* Location card bullet points stagger */
.rc-visible .rc-loc-info p:nth-of-type(1) { animation: rcFadeUp 0.4s 0.25s ease-out forwards; }
.rc-visible .rc-loc-info p:nth-of-type(2) { animation: rcFadeUp 0.4s 0.32s ease-out forwards; }
.rc-visible .rc-loc-info p:nth-of-type(3) { animation: rcFadeUp 0.4s 0.39s ease-out forwards; }
.rc-visible .rc-loc-info p:nth-of-type(4) { animation: rcFadeUp 0.4s 0.46s ease-out forwards; }
.rc-visible .rc-loc-info p:nth-of-type(5) { animation: rcFadeUp 0.4s 0.53s ease-out forwards; }

/* ====== SECTION 1: HERO BANNER ====== */
.rc-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.rc-banner-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rc-banner-swiper .swiper-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    gap: 0 !important;
    padding: 0 !important;
}

.rc-banner-swiper .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.rc-banner-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.rc-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rc-overlay-banner);
    z-index: 1;
}

.rc-banner-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.rc-banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.rc-banner-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 100;
    color: var(--rc-white);
    line-height: 1;
    margin-bottom: 24px;
}

.rc-banner-content h2 strong {
    font-weight: 700;
}

.rc-banner-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--rc-white);
    line-height: 30px;
    margin-bottom: 30px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.rc-btn {
    display: inline-block;
    padding: 14px 38px;
    background: var(--rc-white);
    color: var(--rc-black);
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.rc-btn:hover {
    background: var(--rc-accent);
    color: var(--rc-white);
}

/* Swiper nav */
.rc-banner .swiper-button-prev,
.rc-banner .swiper-button-next {
    color: var(--rc-white-50);
    width: 50px;
    height: 50px;
}

.rc-banner .swiper-button-prev:hover,
.rc-banner .swiper-button-next:hover {
    color: var(--rc-white);
}

.rc-banner .swiper-button-prev { left: 30px; }
.rc-banner .swiper-button-next { right: 30px; }

.rc-banner .swiper-pagination {
    bottom: 30px !important;
}

.rc-banner .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: var(--rc-white-35);
    opacity: 1;
    transition: all 0.3s;
}

.rc-banner .swiper-pagination-bullet-active {
    background: var(--rc-white);
    width: 45px;
}

/* ====== SECTION 2: ABOUT / FEATURES ====== */
.rc-about {
    position: relative;
    padding: 100px 0 30px;
    margin-bottom: -90px;
    background: var(--rc-bg-white);
    overflow: visible;
    z-index: 2;
}

.rc-shape-right {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.12;
}

.rc-shape-right img {
    max-width: 350px;
}

.rc-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.rc-about-row {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.rc-about-left {
    flex: 1;
}

.rc-about-thumb {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.rc-about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rc-about-right > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-text-dark);
    line-height: 1.2;
    margin-bottom: 28px;
}

/* Checklist */
.rc-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.rc-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--rc-text-dark);
    line-height: 28px;
    border-bottom: 1px dashed var(--rc-border-light);
}

.rc-checklist li:last-child {
    border-bottom: none;
}

.rc-checklist li i {
    color: var(--rc-accent);
    font-size: 14px;
    width: 30px;
    height: 30px;
    background: var(--rc-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Expertise / Counter Box */
.rc-expertise {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 40px 40px;
    margin-top: auto;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.rc-expertise h2 {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--rc-white);
    line-height: 1.2;
    margin: 0;
}

.rc-expertise h2 strong {
    font-size: 80px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--rc-white);
}

/* ====== SECTION 3: SERVICES DARK ====== */
.rc-services-dark {
    position: relative;
    background: var(--rc-dark-navy);
    color: var(--rc-white);
    padding: 140px 0 100px;
    overflow: hidden;
}

.rc-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    opacity: 0.6;
    pointer-events: none;
}

.rc-shape-left img {
    width: 100%;
    height: auto;
    filter: brightness(3);
}

.rc-shape-right-dark {
    position: absolute;
    right: -60px;
    top: -60px;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
}

.rc-shape-right-dark img {
    max-width: 500px;
    filter: brightness(2);
}

.rc-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.rc-services-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.rc-services-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.rc-services-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-white);
    line-height: 1.2;
}

.rc-services-right {
    flex: 1;
}

.rc-services-right p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-white-80);
    line-height: 28px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rc-white-08);
}

.rc-services-right p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ====== SECTION 4: FAQ / PRIVATE CLOUD ====== */
.rc-faq-area {
    padding: 100px 0;
    background: var(--rc-bg-light);
    overflow: hidden;
}

.rc-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rc-faq-top {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.rc-faq-thumb {
    flex: 1;
}

.rc-faq-thumb img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.rc-faq-heading {
    flex: 1;
}

.rc-faq-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.rc-faq-heading p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-text-body);
    line-height: 28px;
}

.rc-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rc-faq-item {
    background: var(--rc-bg-white);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rc-faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rc-faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--rc-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.rc-faq-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--rc-text-body);
    line-height: 26px;
}

/* ====== SECTION 5: STORAGE / PROCESS DARK ====== */
.rc-process-dark {
    background: var(--rc-darker-navy);
    color: var(--rc-white);
    padding: 100px 0;
}

.rc-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rc-process-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.rc-process-left {
    flex: 1.2;
}

.rc-process-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.rc-process-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-white-80);
    line-height: 28px;
}

.rc-process-right {
    flex: 1;
}

.rc-process-thumb img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.rc-process-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
}

.rc-process-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-white-75);
    line-height: 28px;
}

/* ====== SECTION 6: DATA CENTER LOCATIONS ====== */
.rc-locations {
    padding: 100px 0;
    background: var(--rc-bg-white);
}

.rc-locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rc-locations-heading {
    text-align: center;
    margin-bottom: 50px;
}

.rc-locations-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-text-dark);
    line-height: 1.2;
}

.rc-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rc-loc-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--rc-bg-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rc-loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rc-loc-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.rc-loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.rc-loc-card:hover .rc-loc-img img {
    transform: scale(1.06);
}

.rc-loc-info {
    padding: 24px;
}

.rc-loc-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--rc-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.rc-loc-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-text-body);
    line-height: 28px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.rc-loc-info p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--rc-accent);
    border-radius: 50%;
}

/* ====== SECTION 7: CTA / MEETING ====== */
.rc-meeting {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.rc-meeting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 55, 0.75) 0%, rgba(30, 33, 72, 0.65) 50%, rgba(23, 26, 58, 0.7) 100%);
    z-index: 1;
}

.rc-meeting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rc-meeting-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.rc-meeting-text {
    flex: 1;
}

.rc-meeting-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--rc-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.rc-meeting-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-white-75);
    line-height: 28px;
}

.rc-meeting-contacts {
    flex: 0.8;
    display: flex;
    gap: 20px;
}

.rc-contact-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(108, 114, 203, 0.15) 0%, rgba(140, 160, 220, 0.08) 50%, rgba(108, 114, 203, 0.12) 100%);
    border: 1px solid rgba(108, 114, 203, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(108, 114, 203, 0.1);
}

.rc-contact-card:hover {
    background: linear-gradient(135deg, rgba(108, 114, 203, 0.25) 0%, rgba(140, 160, 220, 0.18) 50%, rgba(108, 114, 203, 0.22) 100%);
    border-color: rgba(108, 114, 203, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(108, 114, 203, 0.25);
}

.rc-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rc-accent), #8b8edf);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(108, 114, 203, 0.4);
}

.rc-contact-icon i {
    font-size: 22px;
    color: var(--rc-white);
}

.rc-contact-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--rc-white);
    margin-bottom: 6px;
}

.rc-contact-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--rc-white-65);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .rc-banner-content h2 { font-size: 50px; }
    .rc-banner-content { margin-left: 20px; }

    .rc-about-row { flex-direction: column; gap: 40px; }
    .rc-about-thumb { height: auto; }
    .rc-about-thumb img { max-width: 420px; height: auto; }
    .rc-about-right > h2 { font-size: 30px; }
    .rc-about { margin-bottom: -60px; }
    .rc-services-dark { padding-top: 100px; }

    .rc-services-row { flex-direction: column; gap: 30px; }
    .rc-services-left { position: static; }
    .rc-services-left h2 { font-size: 30px; }

    .rc-faq-top { flex-direction: column; gap: 30px; }
    .rc-faq-heading h2 { font-size: 30px; }
    .rc-faq-grid { grid-template-columns: 1fr; }

    .rc-process-row { flex-direction: column; gap: 30px; }
    .rc-process-left h2 { font-size: 30px; }
    .rc-process-details { grid-template-columns: 1fr; }

    .rc-locations-grid { grid-template-columns: repeat(2, 1fr); }
    .rc-locations-heading h2 { font-size: 30px; }

    .rc-meeting-row { flex-direction: column; text-align: center; gap: 40px; }
    .rc-meeting-text h2 { font-size: 30px; }
}

@media (max-width: 768px) {
    .rc-banner, .rc-banner-slide { height: 80vh; min-height: 480px; }
    .rc-banner-content { margin-left: 0; }
    .rc-banner-content h2 { font-size: 38px; }
    .rc-banner-content p { font-size: 15px; }
    .rc-banner .swiper-button-prev,
    .rc-banner .swiper-button-next { display: none; }

    .rc-about { padding: 60px 0 20px; margin-bottom: -40px; }
    .rc-services-dark { padding: 80px 0 60px; }
    .rc-faq-area, .rc-process-dark, .rc-locations, .rc-meeting { padding: 60px 0; }

    .rc-about-right > h2, .rc-faq-heading h2,
    .rc-process-left h2, .rc-locations-heading h2,
    .rc-meeting-text h2 { font-size: 26px; }

    .rc-services-left h2 { font-size: 24px; }

    .rc-expertise { padding: 30px; min-height: 140px; }
    .rc-expertise h2 strong { font-size: 60px; }

    .rc-locations-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .rc-meeting-contacts {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .rc-banner, .rc-banner-slide { height: 70vh; min-height: 380px; }
    .rc-banner-container { padding: 0 20px; }
    .rc-banner-content h2 { font-size: 30px; }
    .rc-banner-content p { font-size: 14px; }

    .rc-about { padding: 40px 0 15px; margin-bottom: -30px; }
    .rc-services-dark { padding: 70px 0 50px; }

    .rc-about-right > h2, .rc-faq-heading h2,
    .rc-process-left h2, .rc-locations-heading h2,
    .rc-meeting-text h2 { font-size: 22px; }

    .rc-services-left h2 { font-size: 20px; }
    .rc-expertise { padding: 24px; min-height: 120px; border-radius: 20px; }
    .rc-expertise h2 strong { font-size: 44px; }
}

/* ============================================
   SUB-PAGES (Güvenli Cloud / Private Cloud)
   ============================================ */

/* Page Hero */
.rc-page-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rc-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rc-overlay-hero);
    z-index: 1;
}

.rc-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 40px;
}

.rc-page-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--rc-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.rc-page-hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-white-80);
    line-height: 28px;
}

/* Sub-page Content */
.rc-subpage {
    padding: 80px 0;
    background: var(--rc-bg-white);
}

.rc-subpage-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.rc-subpage-image {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.rc-subpage-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Items */
.rc-subpage-features {
    margin-bottom: 40px;
}

.rc-feature-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--rc-border-lighter);
}

.rc-feature-item:last-child {
    border-bottom: none;
}

.rc-feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--rc-text-dark);
    margin-bottom: 8px;
    display: inline;
}

.rc-feature-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--rc-text-muted);
    line-height: 28px;
    display: inline;
}

/* Closing */
.rc-subpage-closing {
    padding: 30px 0;
    border-top: 2px solid var(--rc-accent);
    margin-top: 20px;
}

.rc-subpage-closing p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--rc-text-dark);
    line-height: 28px;
}

/* Sub-page Responsive */
@media (max-width: 768px) {
    .rc-page-hero { min-height: 300px; }
    .rc-page-hero-content { padding: 60px 20px; }
    .rc-page-hero-content h1 { font-size: 30px; }
    .rc-subpage { padding: 50px 0; }
}

@media (max-width: 480px) {
    .rc-page-hero-content h1 { font-size: 24px; }
    .rc-page-hero-content p { font-size: 14px; }
}
