/* Refund and Cancellation Policy Page Styles */

/* Root Variables */
:root {
    --primary-color: #FF6B47;
    --primary-gradient: linear-gradient(135deg, #FF6B47, #FF8A65);
    --secondary-color: #FF8A65;
    --accent-color: #FFB74D;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-muted: #7F8C8D;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-light: #F0F4F8;
    --shadow-light: 0 4px 15px rgba(255, 107, 71, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 71, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.refund-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.refund-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: white;
}

.refund-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.refund-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 138, 101, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(255, 183, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 71, 0.03) 0%, transparent 50%);
}

.refund-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.refund-hero-text {
    animation: slideInLeft 1s ease-out;
}

.refund-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.refund-title-main {
    display: block;
    color: var(--text-primary);
}

.refund-title-highlight {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refund-title-policy {
    display: block;
    font-style: italic;
    color: var(--primary-color);
    font-size: 0.8em;
}

.refund-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
}

.refund-hero-actions {
    display: flex;
    gap: 1.5rem;
}

.refund-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.refund-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.refund-btn-primary:hover::before {
    left: 100%;
}

.refund-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 71, 0.4);
}

/* Hero Illustration */
.refund-hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.refund-hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refund-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Background Circles */
.refund-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.refund-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.refund-circle-1 {
    width: 80px;
    height: 80px;
    background: #FFE0B2;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.refund-circle-2 {
    width: 60px;
    height: 60px;
    background: #F8BBD9;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.refund-circle-3 {
    width: 100px;
    height: 100px;
    background: #E1F5FE;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.refund-circle-4 {
    width: 70px;
    height: 70px;
    background: #F3E5F5;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

/* Couch */
.refund-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.refund-couch {
    position: relative;
    z-index: 2;
}

.refund-couch-base {
    width: 200px;
    height: 80px;
    background: #4A6741;
    border-radius: 10px;
    position: relative;
}

.refund-couch-back {
    width: 200px;
    height: 120px;
    background: #4A6741;
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: -100px;
    left: 0;
}

.refund-couch-arm-left {
    width: 40px;
    height: 100px;
    background: #4A6741;
    border-radius: 15px 0 0 15px;
    position: absolute;
    top: -80px;
    left: -20px;
}

.refund-couch-arm-right {
    width: 40px;
    height: 100px;
    background: #4A6741;
    border-radius: 0 15px 15px 0;
    position: absolute;
    top: -80px;
    right: -20px;
}

.refund-couch-legs {
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
}

.refund-couch-legs::before,
.refund-couch-legs::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 15px;
    background: #2E4233;
    border-radius: 4px;
}

.refund-couch-legs::before {
    left: 0;
}

.refund-couch-legs::after {
    right: 0;
}

/* Person */
.refund-person {
    position: absolute;
    top: -120px;
    left: 60px;
    z-index: 3;
}

.refund-person-body {
    width: 80px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 40px 40px 20px 20px;
    position: relative;
}

.refund-person-head {
    width: 50px;
    height: 50px;
    background: #FDBCB4;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 15px;
}

.refund-person-hair {
    width: 55px;
    height: 35px;
    background: #2C1810;
    border-radius: 30px 30px 0 0;
    position: absolute;
    top: -55px;
    left: 12px;
}

.refund-person-arm {
    width: 20px;
    height: 60px;
    background: #FDBCB4;
    border-radius: 10px;
    position: absolute;
    top: 20px;
    right: -15px;
    transform: rotate(20deg);
}

.refund-person-legs {
    width: 60px;
    height: 30px;
    background: #2C3E50;
    border-radius: 0 0 15px 15px;
    position: absolute;
    bottom: -25px;
    left: 10px;
}

.refund-person-phone {
    width: 12px;
    height: 20px;
    background: #2C3E50;
    border-radius: 3px;
    position: absolute;
    top: 30px;
    right: -25px;
    border: 2px solid #FFE0B2;
}

/* Modal */
.refund-modal {
    position: absolute;
    top: -200px;
    right: -100px;
    z-index: 4;
    animation: modalFloat 4s ease-in-out infinite;
}

.refund-modal-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 1.5rem;
    min-width: 280px;
    border: 1px solid #E0E0E0;
}

.refund-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.refund-modal-title {
    font-weight: 700;
    color: var(--text-primary);
}

.refund-modal-close {
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 300;
}

.refund-modal-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.refund-modal-buttons {
    display: flex;
    gap: 1rem;
}

.refund-modal-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.refund-modal-cancel {
    background: var(--primary-color);
    color: white;
}

.refund-modal-proceed {
    background: #E0E0E0;
    color: var(--text-primary);
}

.refund-modal-cancel:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.refund-modal-proceed:hover {
    background: #D0D0D0;
    transform: translateY(-2px);
}

/* Content Section */
.refund-content-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.refund-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.refund-content-header {
    text-align: center;
    margin-bottom: 4rem;
}

.refund-content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.refund-content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.refund-content-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.refund-policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.refund-policy-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 107, 71, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.refund-policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.refund-policy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.refund-policy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.refund-policy-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.refund-policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.refund-policy-content ul {
    list-style: none;
    padding: 0;
}

.refund-policy-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.refund-policy-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.refund-contact-info p {
    margin-bottom: 0.5rem;
}

.refund-important-notice {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.refund-important-notice h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.refund-important-notice p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes modalFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .refund-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .refund-hero-title {
        font-size: 3.5rem;
    }
    
    .refund-policy-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .refund-container {
        padding: 0 1rem;
    }
    
    .refund-hero-section {
        min-height: 90vh;
    }
    
    .refund-hero-content {
        padding: 4rem 0;
    }
    
    .refund-hero-title {
        font-size: 2.8rem;
    }
    
    .refund-hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .refund-hero-image-container {
        height: 400px;
    }
    
    .refund-content-title {
        font-size: 2rem;
    }
    
    .refund-policy-grid {
        grid-template-columns: 1fr;
    }
    
    .refund-policy-card {
        padding: 1.5rem;
    }
    
    .refund-modal {
        top: -150px;
        right: -50px;
    }
    
    .refund-modal-content {
        min-width: 220px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .refund-hero-title {
        font-size: 2.2rem;
    }
    
    .refund-hero-description {
        font-size: 1rem;
    }
    
    .refund-btn-primary {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .refund-content-title {
        font-size: 1.8rem;
    }
    
    .refund-content-subtitle {
        font-size: 1rem;
    }
    
    .refund-hero-image-container {
        height: 300px;
    }
    
    .refund-couch-base {
        width: 150px;
        height: 60px;
    }
    
    .refund-couch-back {
        width: 150px;
        height: 90px;
        top: -75px;
    }
    
    .refund-person {
        left: 45px;
        top: -90px;
    }
    
    .refund-person-body {
        width: 60px;
        height: 75px;
    }
    
    .refund-modal {
        top: -120px;
        right: -30px;
    }
    
    .refund-modal-content {
        min-width: 180px;
    }
}
