/* Terms & Conditions Page Styles */

/* Root Variables for Better Theme Management */
: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-accent: #FFF3E0;
    --shadow-light: 0 4px 15px rgba(255, 107, 71, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 71, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Enhancements */
* {
    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;
}

/* Hero Section Styles */
.aw-flex {
  
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
   
}

.aw-gutter-offset {
    margin: 0 -1rem;
}

.aw-col-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
    padding: 0 1rem;
}

.aw-col-5 {
    flex: 0 0 41.67%;
    max-width: 41.67%;
    padding: 0 1rem;
}

.aw-gutter {
    padding: 0 1rem;
}

.aw-row-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.aw-row-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 71, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 138, 101, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 183, 77, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.aw-row-section > * {
    position: relative;
    z-index: 2;
}

.aw-hero-feature__content-wrapper1 {
    padding: 2rem 0;
    animation: slideInFromLeft 0.8s ease-out;
}

.aw-text-h1.hero {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-secondary-heading {
    color: var(--primary-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.aw-secondary-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

.aw-spacer-16 {
    height: 1rem;
}

.aw-spacer-32 {
    height: 2rem;
}

.aw-spacer-96 {
    height: 6rem;
}

.aw-buttons {
    display: flex;
    gap: 1.5rem;
    
}

.aw-buttons--left {
    justify-content: flex-start;
}

.aw-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.aw-button-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;
}

.aw-button-primary:hover::before {
    left: 100%;
}

.aw-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 71, 0.4);
}

.aw-button-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.aw-hero-image--bottom-right1 {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    animation: slideInFromRight 0.8s ease-out;
}

.aw-hero-image--bottom-right1:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Main Content Styles */
.aw-site-main {
    background: var(--bg-primary);
    position: relative;
}

.aw-page-margin {
    padding: 0 2rem;
}

.aw-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.aw-container--wide {
    max-width: 1400px;
}



.aw-section {
    padding: 0rem 0;
    position: relative;
}

.aw-section--no-margin {
    margin: 0;
}

.aw-section--inset-top {
    padding-top: 3rem;
}

.aw-alignfull {
    width: 100%;
}

.aw-bg-white {
    background-color: var(--bg-primary);
}

/* Enhanced Content Card */
.aw-content-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 71, 0.1);
    position: relative;
    overflow: hidden;
}

.aw-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

/* Content Typography */
.aw-value-prop {
    text-align: center;
    
    position: relative;
    
}

.aw-text-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-align: center;
}

.aw-text-h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.aw-text-h2::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.aw-spacer-12 {
    height: 0.75rem;
}

/* Enhanced Paragraph and Content Styles */
.aw-pera-font {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

.aw-pera-font::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    border-radius: 2px;
}

.aw-pera-font a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding: 2px 6px;
    border-radius: 4px;
}

.aw-pera-font a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.aw-pera-font a:hover::before {
    width: 100%;
}

.aw-pera-font a:hover {
    color: var(--secondary-color);
    background: rgba(255, 107, 71, 0.1);
    transform: translateY(-1px);
}

.aw-terms-subheading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin: 3rem 0 1.5rem;
    position: relative;
    padding: 1rem 0 1rem 40px;
    background: linear-gradient(135deg, var(--bg-accent) 0%, rgba(255, 107, 71, 0.05) 100%);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.aw-terms-subheading::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 107, 71, 0.3);
}

.aw-pera-font strong {
    color: var(--text-primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-pera-font ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.aw-pera-font li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    background: var(--bg-secondary);
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.aw-pera-font li:hover {
    background: var(--bg-accent);
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.aw-pera-font li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Progress Indicator */
.aw-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 71, 0.1);
    z-index: 1000;
}

.aw-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    
    .aw-content-card {
        padding: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .aw-text-h1.hero {
        font-size: 3rem;
    }
    
    .aw-text-h2 {
        font-size: 2.2rem;
    }
    
    .aw-col-7,
    .aw-col-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .aw-row-section {
        padding: 4rem 0;
    }
    
    .aw-page-margin {
        padding: 0 1.5rem;
    }
    
    .aw-section {
        padding: 4rem 0;
    }
    
    .aw-content-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .aw-text-h1.hero {
        font-size: 2.5rem;
    }
    
    .aw-text-h2 {
        font-size: 2rem;
    }
    
    .aw-pera-font {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .aw-terms-subheading {
        font-size: 1.4rem;
        padding: 1rem 0 1rem 35px;
    }
    
    .aw-row-section {
        padding: 3rem 0;
    }
    
    .aw-section {
        padding: 3rem 0;
    }
    
    .aw-page-margin {
        padding: 0 1rem;
    }
    
    .aw-button-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .aw-content-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .aw-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .aw-text-h1.hero {
        font-size: 2rem;
    }
    
    .aw-text-h2 {
        font-size: 1.8rem;
    }
    
    .aw-pera-font {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 10px;
    }
    
    .aw-terms-subheading {
        font-size: 1.2rem;
        padding: 0.8rem 0 0.8rem 30px;
    }
    
    .aw-terms-subheading::before {
        left: 10px;
        width: 6px;
        height: 6px;
    }
    
    .aw-content-card {
        padding: 1.2rem;
        margin: 1rem 0;
    }
    
    .aw-button-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .aw-row-section {
        padding: 2rem 0;
    }
    
    .aw-section {
        padding: 2rem 0;
    }
}

/* Animation Classes */
.aw-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.aw-fade-in-delay-1 {
    animation-delay: 0.2s;
}

.aw-fade-in-delay-2 {
    animation-delay: 0.4s;
}

.aw-fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .aw-value-prop,
    .aw-pera-font,
    .aw-terms-subheading {
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .aw-content-card {
        animation: fadeInUp 0.8s ease forwards;
    }
}

/* Enhanced Accessibility */
.aw-skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.aw-skip-link:focus {
    top: 6px;
}

/* Focus Styles */
.aw-button-primary:focus,
.aw-pera-font a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 107, 71, 0.2);
}

/* Print Styles */
@media print {
    .aw-button-primary,
    .aw-progress-indicator {
        display: none;
    }
    
    .aw-row-section {
        background: white;
        padding: 1rem 0;
    }
    
    .aw-text-h1.hero,
    .aw-text-h2 {
        color: #333 !important;
    }
    
    .aw-secondary-heading {
        color: #333 !important;
    }
    
    .aw-pera-font a {
        color: #333 !important;
        text-decoration: underline;
    }
    
    .aw-content-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #000;
        --text-primary: #000;
        --text-secondary: #000;
        --bg-primary: #fff;
        --bg-secondary: #fff;
    }
    
    .aw-text-h1.hero,
    .aw-text-h2,
    .aw-pera-font {
        color: #000;
    }
    
    .aw-secondary-heading {
        color: #000;
    }
    
    .aw-button-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .aw-content-card {
        border: 2px solid #000;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #E8E8E8;
        --text-secondary: #B0B0B0;
        --text-muted: #888;
        --bg-primary: #1A1A1A;
        --bg-secondary: #2D2D2D;
        --bg-accent: #3A2A1A;
    }
    
    .aw-content-card {
        background: var(--bg-secondary);
        border-color: rgba(255, 107, 71, 0.2);
    }
    
    .aw-pera-font li {
        background: var(--bg-primary);
    }
    
    .aw-pera-font li:hover {
        background: var(--bg-accent);
    }
}