/* ============================================
   ROOMMILA WEBSITE - EXACT FIGMA DESIGN
   Font: Montserrat
   Colors: #1e2436 (dark), #4CAF50 (green)
   ============================================ */

/* CSS Variables */
:root {
    --primary-dark: #1e2436;
    --primary-green: #4CAF50;
    --text-dark: #000000;
    --text-gray: #666;
    --white: #ffffff;
    --bg-light: #f6f6f6;
    --bg-section: rgba(237, 237, 237, 0.49);
    
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: -3px 7px 11.6px 5px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 20px 0;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1440px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 700px;
    margin: 100px 32px 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: visible;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--bg-light), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 80px 80px 100px;
    min-height: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 32px;
}

.hero-brand {
    font-weight: 700;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 48px;
    max-width: 520px;
    line-height: 1.8;
}

.google-play-btn {
    display: inline-block;
    transition: var(--transition);
}

.google-play-btn img {
    height: auto;
    width: 200px;
    border-radius: 12px;
}

.google-play-btn:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}

.google-play-btn.large img {
    width: 230px;
    height: auto;
}

.google-play-btn.small img {
    width: 120px;
    height: auto;
}

.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
}

.phone {
    position: absolute;
    width: 240px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.phone img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-back {
    transform: translateX(-80px) translateY(-20px);
    z-index: 1;
}

.phone-front {
    transform: translateX(80px) translateY(40px);
    z-index: 2;
}

/* ============================================
   RENT YOUR ROOM SECTION
   ============================================ */
.rent-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-subtitle strong {
    font-weight: 600;
}

.rent-image {
    width: calc(100% - 64px);
    margin: 0 auto 60px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.rent-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 40%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.rent-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-phone {
    width: 200px;
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.step-phone img {
    width: 100%;
    height: auto;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.step-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 0 32px;
    margin-bottom: 60px;
}

.benefits-container {
    background: var(--bg-section);
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 850px;
    overflow: hidden;
}

.benefits-text {
    padding: 80px 60px;
}

.benefits-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.benefits-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 56px;
    line-height: 1.8;
    max-width: 380px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.benefit-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-green);
    flex-shrink: 0;
}

.benefits-phones {
    position: relative;
    background: var(--bg-section);
    overflow: visible;
}

.benefit-phone {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: -3px 7px 12px 5px rgba(0, 0, 0, 0.2);
}

.benefit-phone img {
    width: 100%;
    height: auto;
}

.benefit-phone-1 {
    width: 190px;
    top: 30px;
    left: 15%;
    transform: rotate(40deg);
    z-index: 3;
}

.benefit-phone-2 {
    width: 190px;
    bottom: 100px;
    left: 5%;
    transform: rotate(-50deg);
    z-index: 2;
}

.benefit-phone-3 {
    width: 180px;
    bottom: 60px;
    right: 15%;
    transform: rotate(40deg);
    z-index: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
    margin: 0 32px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

/* Floating Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.35;
}

.cta-icon circle,
.cta-icon path,
.cta-icon polyline {
    stroke: #94a3b8;
    stroke-width: 1.5;
    fill: none;
}

.cta-icon.icon-1 { top: 10%; left: 50%; }
.cta-icon.icon-2 { top: 20%; left: 68%; }
.cta-icon.icon-3 { top: 6%; right: 10%; }
.cta-icon.icon-4 { top: 42%; left: 48%; }
.cta-icon.icon-5 { top: 28%; right: 5%; }
.cta-icon.icon-6 { top: 55%; left: 62%; }
.cta-icon.icon-7 { top: 65%; right: 15%; }
.cta-icon.icon-8 { top: 78%; left: 52%; }
.cta-icon.icon-9 { top: 85%; right: 25%; }
.cta-icon.icon-10 { bottom: 8%; left: 70%; }

.cta-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, transparent, #f8f9fa);
    pointer-events: none;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: transparent;
    position: relative;
    z-index: 4;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 40px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 48px;
    line-height: 1.3;
}

.cta-text strong {
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding: 56px 0 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 0 40px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.footer .logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.footer-social {
    text-align: right;
}

.social-label {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-link {
    width: 22px;
    height: 22px;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    position: relative;
    height: 580px;
    margin: 16px 40px 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-section {
    padding: 80px 0;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.about-text {
    max-width: 1045px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 24px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
    position: relative;
    min-height: 670px;
    margin: 120px 40px 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 100px;
    align-items: start;
}

.contact-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-dark);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 0;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: var(--white);
}

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

.btn-submit {
    align-self: flex-start;
    padding: 15px 48px;
}

/* ============================================
   TABLET RESPONSIVE (max-width: 1024px)
   ============================================ */
@media (max-width: 1200px) {
    .header .container {
        padding: 0 30px;
    }

    .nav-list {
        gap: 35px;
    }

    .nav {
        gap: 35px;
    }

    .hero {
        margin: 100px 24px 0;
    }

    .hero-content {
        padding: 60px 50px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-phones {
        min-height: 450px;
    }

    .phone {
        width: 180px;
    }

    .benefits-section {
        padding: 0 24px;
    }

    .benefits-text {
        padding: 60px 40px;
    }

    .cta-section {
        margin: 0 24px;
    }

    .contact-container {
        padding: 60px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .logo-icon {
        height: 45px;
    }

    .hero {
        margin: 90px 20px 0;
    }

    .hero-content {
        padding: 50px 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .phone {
        width: 160px;
    }

    .phone-back {
        transform: translateX(-35px);
    }

    .phone-front {
        transform: translateX(35px) translateY(40px);
    }

    .steps-container {
        gap: 30px;
    }

    .step-phone {
        width: 170px;
    }

    .benefits-section {
        padding: 0 20px;
    }

    .benefits-container {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .benefits-text {
        padding: 50px 35px;
    }

    .benefits-title {
        font-size: 26px;
    }

    .benefit-phone {
        width: 150px;
    }

    .cta-section {
        margin: 0 20px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-text {
        font-size: 32px;
    }

    .contact-container {
        padding: 40px;
    }
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .container {
        padding: 0 16px;
    }

    .logo-icon {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 22px;
    }

    .btn {
        padding: 14px 32px;
    }

    .hero {
        margin: 80px 16px 0;
        min-height: auto;
        background: var(--bg-light);
    }

    .hero-bg {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
        min-height: auto;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 13px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-phones {
        display: none;
    }

    .phone {
        width: 140px;
        border-radius: 20px;
    }

    .phone-back {
        transform: translateX(-35px);
    }

    .phone-front {
        transform: translateX(35px) translateY(35px);
    }

    .google-play-btn img {
        width: 160px;
        height: auto;
    }

    .google-play-btn.large img {
        width: 180px;
        height: auto;
    }

    .rent-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 20px;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .rent-image {
        display: none;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .step-phone {
        width: 160px;
    }

    .step-info {
        gap: 4px;
    }

    .step-number {
        font-size: 16px;
    }

    .step-name {
        font-size: 14px;
    }

    .benefits-section {
        padding: 0 16px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .benefits-text {
        padding: 30px 20px;
        order: 1;
    }

    .benefits-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .benefits-description {
        font-size: 13px;
        max-width: 100%;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .benefits-list {
        gap: 12px;
    }

    .benefits-list li {
        font-size: 13px;
    }

    .benefit-dot {
        width: 16px;
        height: 16px;
    }

    .benefits-phones {
        order: 2;
        min-height: 320px;
        position: relative;
    }

    .benefit-phone {
        width: 110px;
    }

    .benefit-phone-1 {
        top: 15px;
        left: 8%;
        right: auto;
    }

    .benefit-phone-2 {
        bottom: 50px;
        left: 22%;
    }

    .benefit-phone-3 {
        bottom: 25px;
        right: 6%;
    }

    .cta-section {
        grid-template-columns: 1fr;
        margin: 0 16px;
        min-height: auto;
    }

    .cta-icons {
        display: none;
    }

    .cta-image {
        display: none;
    }

    .cta-image::after {
        display: none;
    }

    .cta-content {
        padding: 50px 24px;
        text-align: center;
        align-items: center;
    }

    .cta-content .google-play-btn {
        display: flex;
        justify-content: center;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 22px;
        margin-bottom: 28px;
        line-height: 1.35;
    }

    .footer {
        padding: 30px 0 0;
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 0 20px 20px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        height: 40px;
        width: 40px;
    }

    .footer .logo-text {
        font-size: 20px;
    }

    .footer-download .google-play-btn img {
        width: 120px;
        height: auto;
    }

    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 16px;
    }

    .social-link {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .about-hero {
        margin: 80px 16px 0;
        height: 280px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-content-section {
        padding: 50px 0;
    }

    .about-text {
        padding: 0 16px;
    }

    .about-text p {
        font-size: 14px;
    }

    .contact-section {
        margin: 80px 16px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .btn-submit {
        width: 100%;
    }
}

/* ============================================
   SMALL MOBILE RESPONSIVE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .logo-icon {
        height: 50px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-phones {
        min-height: 300px;
    }

    .phone {
        width: 110px;
    }

    .section-title {
        font-size: 20px;
    }

    .step-phone {
        width: 160px;
    }

    .step-number {
        font-size: 16px;
    }

    .step-name {
        font-size: 14px;
    }

    .benefits-text {
        padding: 30px 20px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .benefit-dot {
        width: 18px;
        height: 18px;
    }

    .benefits-phones {
        min-height: 350px;
    }

    .benefit-phone {
        width: 120px;
    }

    .cta-image {
        height: 250px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-text {
        font-size: 22px;
    }

    .footer-logo-img {
        height: 40px;
        width: 40px;
    }

    .footer .logo-text {
        font-size: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Animations */
.section-title,
.section-subtitle,
.step,
.benefits-text,
.benefits-phones,
.cta-content,
.cta-image,
.contact-info,
.contact-form-wrapper,
.about-title,
.about-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero section animates in immediately on load */
.hero-text,
.hero-phones {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-phones {
    animation-delay: 0.2s;
}

.section-title.animate-in,
.section-subtitle.animate-in,
.benefits-text.animate-in,
.cta-content.animate-in,
.contact-info.animate-in,
.about-title.animate-in,
.about-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-phones.animate-in,
.cta-image.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.25s; }
.step:nth-child(3) { transition-delay: 0.4s; }

.contact-form-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* Reveal class for manual usage */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a3a4d;
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */
.legal-hero {
    margin-top: 100px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e2436 0%, #2a3a4d 100%);
    text-align: center;
}

.legal-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.legal-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.legal-nav-link {
    padding: 12px 28px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.legal-nav-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 24px 32px;
    background: var(--bg-section);
    border-radius: var(--border-radius);
    text-align: center;
}

.legal-intro p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 60px;
    scroll-margin-top: 120px;
}

.legal-section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-green);
}

.legal-effective-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-style: italic;
}

.legal-content {
    color: var(--text-dark);
}

.legal-content > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px;
}

.legal-subsection {
    margin-bottom: 32px;
}

.legal-subsection-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-subsection p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.legal-list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
}

.legal-highlight {
    background: #fff9e6;
    border-left: 4px solid var(--primary-green);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 4px;
}

.legal-highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.legal-highlight strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.grievance-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 32px;
    margin: 32px 0;
    border: 1px solid #e0e0e0;
}

.grievance-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.grievance-row:last-child {
    border-bottom: none;
}

.grievance-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.grievance-value {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.grievance-value a {
    color: var(--primary-green);
    text-decoration: underline;
}

.grievance-value a:hover {
    color: var(--primary-dark);
}

.legal-footer {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

.legal-footer p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.legal-footer a {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-footer a:hover {
    color: var(--primary-dark);
}

/* Data Retention Cards */
.retention-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.retention-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
}

.retention-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.retention-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.retention-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.retention-card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.retention-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.retention-card p:last-child {
    margin-bottom: 0;
}

/* How-to Box */
.how-to-box {
    background: #e8f5e9;
    border: 2px solid var(--primary-green);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px 0;
}

.how-to-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-to-title::before {
    content: '→';
    font-size: 24px;
    color: var(--primary-green);
}

.how-to-box p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Procedure Steps */
.procedure-steps {
    margin: 32px 0;
}

.procedure-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.procedure-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.procedure-step:last-child {
    margin-bottom: 0;
}

.step-number-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Privacy Policy Responsive Styles */
@media (max-width: 1024px) {
    .legal-hero-title {
        font-size: 36px;
    }

    .legal-hero-subtitle {
        font-size: 18px;
    }

    .legal-section-title {
        font-size: 28px;
    }

    .legal-subsection-title {
        font-size: 20px;
    }

    .retention-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .retention-card {
        padding: 20px;
    }

    .retention-icon {
        width: 28px;
        height: 28px;
    }

    .retention-card-header h4 {
        font-size: 16px;
    }

    .step-number-badge {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .step-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        margin-top: 80px;
        padding: 60px 20px 40px;
    }

    .legal-hero-title {
        font-size: 28px;
    }

    .legal-hero-subtitle {
        font-size: 16px;
    }

    .legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .legal-nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .legal-content-section {
        padding: 40px 20px 60px;
    }

    .legal-intro {
        padding: 20px 24px;
    }

    .legal-intro p {
        font-size: 14px;
    }

    .legal-section {
        margin-bottom: 50px;
        scroll-margin-top: 100px;
    }

    .legal-section-title {
        font-size: 24px;
    }

    .legal-subsection-title {
        font-size: 18px;
    }

    .legal-content > p,
    .legal-subsection p,
    .legal-list li {
        font-size: 14px;
    }

    .legal-list li {
        padding-left: 24px;
    }

    .legal-highlight {
        padding: 16px 20px;
    }

    .legal-highlight p {
        font-size: 14px;
    }

    .grievance-card {
        padding: 24px 20px;
    }

    .grievance-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .grievance-label {
        font-size: 14px;
        font-weight: 600;
    }

    .grievance-value {
        font-size: 14px;
    }

    .legal-footer {
        margin-top: 40px;
        padding-top: 30px;
    }

    .retention-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .retention-card {
        padding: 16px;
    }

    .retention-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .retention-icon {
        width: 24px;
        height: 24px;
    }

    .retention-card-header h4 {
        font-size: 15px;
    }

    .retention-card p {
        font-size: 13px;
    }

    .how-to-box {
        padding: 16px 20px;
    }

    .how-to-title {
        font-size: 16px;
    }

    .how-to-box p {
        font-size: 14px;
    }

    .procedure-step {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
    }

    .step-number-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-content h4 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-hero-title {
        font-size: 24px;
    }

    .legal-hero-subtitle {
        font-size: 14px;
    }

    .legal-section-title {
        font-size: 20px;
    }

    .legal-subsection-title {
        font-size: 16px;
    }
}
