/* Royal Time - Pages Styles */
/* Shared styling for all subpages */

/* ===== PAGE LAYOUT ===== */
.page-content {
    margin-top: 80px; /* Account for fixed navbar */
    min-height: calc(100vh - 80px);
}

.page-header {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    color: var(--pure-white);
    padding: 120px 0 80px; /* Fixed padding to account for 80px navbar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Breadcrumb styles removed - not needed for this design */

.page-title {
    font-family: var(--font-headers);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    color: var(--pure-white);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: var(--pure-white);
    font-weight: 400;
}

/* ===== PAGE MAIN CONTENT ===== */
.page-main {
    padding: var(--space-3xl) 0;
}

.page-section {
    margin-bottom: var(--space-3xl);
}

.page-section:last-child {
    margin-bottom: 0;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(172, 172, 172, 0.15);
    transition: all var(--transition-base);
}

.content-block.enhanced-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

.content-block.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--gold-accent) 100%);
}

.content-block.form-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.content-block.info-block {
    background: rgba(41, 86, 141, 0.03);
    border: 1px solid rgba(41, 86, 141, 0.1);
}

.content-block h2 {
    font-family: var(--font-headers);
    font-size: var(--font-size-2xl);
    color: var(--royal-navy);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.content-block h3 {
    font-family: var(--font-headers);
    font-size: var(--font-size-xl);
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
    font-weight: 600;
}

.content-block p {
    color: var(--silver-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-base);
}

.content-block ul,
.content-block ol {
    color: var(--silver-gray);
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-block li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

/* ===== INFO CARDS ===== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.info-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(172, 172, 172, 0.1);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--royal-navy) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(41, 86, 141, 0.15);
    border-color: var(--royal-blue);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
}

.info-card h3 {
    font-family: var(--font-headers);
    font-size: var(--font-size-lg);
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.info-card p {
    color: var(--silver-gray);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: rgba(41, 86, 141, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border-left: 4px solid var(--royal-blue);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    color: var(--royal-navy);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-right: var(--space-md);
    color: var(--royal-blue);
}

.contact-item a {
    color: var(--royal-navy);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--royal-blue);
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.two-column.enhanced-layout {
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.column-content {
    /* Additional spacing handled by parent grid */
}

/* ===== ALTERNATING SECTION BACKGROUNDS ===== */
.section-gray {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.section-gray::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(41, 86, 141, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(41, 86, 141, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-gray .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-white {
    background: linear-gradient(180deg, var(--pure-white) 0%, #fafbfc 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-white::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(41, 86, 141, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.section-white .container {
    position: relative;
    z-index: 2;
}

/* ===== VISION TIMELINE ===== */
.vision-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    margin: var(--space-2xl) 0;
}

.vision-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 16.66%;
    width: 66.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--gold-accent) 50%, var(--royal-blue) 100%);
    z-index: 1;
}

.vision-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--pure-white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(41, 86, 141, 0.2);
    transition: all 0.3s ease;
    border: 3px solid var(--pure-white);
}

.vision-item:hover .vision-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(41, 86, 141, 0.3);
}

.vision-title {
    font-family: var(--font-headers);
    font-size: var(--font-size-xl);
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.vision-text {
    color: var(--silver-gray);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.value-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(172, 172, 172, 0.1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(41, 86, 141, 0.15);
    border-color: var(--royal-blue);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41, 86, 141, 0.1) 0%, rgba(77, 168, 218, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--royal-blue);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    color: var(--pure-white);
    transform: scale(1.1);
}

.value-title {
    font-family: var(--font-headers);
    font-size: var(--font-size-lg);
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.value-text {
    color: var(--silver-gray);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .vision-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .vision-timeline::before {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px; /* Adjusted for mobile navbar */
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
    }
    
    .content-block {
        padding: var(--space-xl);
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .page-main {
        padding: var(--space-2xl) 0;
    }
    
    .section-gray,
    .section-white {
        padding: var(--space-2xl) 0;
    }
    
    .vision-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .vision-timeline::before {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 90px 0 50px; /* Extra mobile adjustment */
    }
    
    .content-block {
        padding: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .info-card {
        padding: var(--space-lg);
    }
    
    .contact-info {
        padding: var(--space-lg);
    }
}

/* ===== ANIMATION SUPPORT ===== */
.content-block,
.info-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTACT FORM ===== */
.contact-form {
    margin-top: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(172, 172, 172, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--royal-blue), 0 5px 20px rgba(41, 86, 141, 0.15);
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23ACACAC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: calc(var(--space-md) + 24px);
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
    font-weight: 500;
}

.form-note {
    font-size: var(--font-size-sm);
    color: var(--silver-gray);
    margin-top: var(--space-md);
    line-height: 1.5;
}

.form-note a {
    color: var(--royal-blue);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #155724;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #721c24;
}

/* Loading state for submit button */
.contact-form.submitting .btn {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form.submitting .btn svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== TEAM MEMBERS ===== */
.team-member {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(172, 172, 172, 0.2);
}

.team-member:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.team-member h3 {
    font-family: var(--font-headers);
    font-size: var(--font-size-lg);
    color: var(--royal-navy);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.team-member p {
    color: var(--silver-gray);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-base);
}

.team-member p:last-child {
    margin-bottom: 0;
}

.team-member strong {
    color: var(--royal-blue);
    font-weight: 600;
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
    background: linear-gradient(135deg, rgba(41, 86, 141, 0.05) 0%, rgba(77, 168, 218, 0.05) 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-headers);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--royal-navy);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.hero-text {
    font-size: var(--font-size-lg);
    color: var(--silver-gray);
    line-height: 1.7;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    opacity: 0.1;
}

.decoration-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--royal-blue);
    position: absolute;
}

.decoration-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
    background: var(--gold-accent);
}

.decoration-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
    background: var(--royal-navy);
}

/* ===== SECTION STYLING ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--royal-blue);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--silver-gray);
    font-size: var(--font-size-base);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    margin-top: var(--space-lg);
}

.faq-item {
    border: 2px solid rgba(41, 86, 141, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--royal-blue);
    box-shadow: 0 8px 25px rgba(41, 86, 141, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: var(--pure-white);
    border: none;
    padding: var(--space-lg);
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--royal-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all var(--transition-base);
    position: relative;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    color: var(--pure-white);
    border-radius: 50%;
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-question:hover {
    background: rgba(41, 86, 141, 0.03);
}

.faq-question.active {
    background: rgba(41, 86, 141, 0.05);
    color: var(--royal-blue);
}

.faq-question.active .faq-number {
    background: var(--gold-accent);
}

.faq-icon {
    transition: transform var(--transition-base);
    color: var(--royal-blue);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(41, 86, 141, 0.02);
}

.faq-answer.active {
    max-height: 200px;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--silver-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== FAQ CTA ===== */
.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid rgba(41, 86, 141, 0.1);
}

.faq-cta p {
    color: var(--silver-gray);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--royal-navy);
    border: 2px solid var(--royal-navy);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: var(--royal-navy);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 86, 141, 0.2);
}

.btn-secondary svg {
    transition: transform var(--transition-base);
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* ===== WIDE CONTACT FORM ===== */
.contact-form-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.wide-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row-triple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(172, 172, 172, 0.2);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-lg);
}

.contact-alternatives {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--silver-gray);
    font-size: var(--font-size-sm);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--royal-navy);
}

.contact-link svg {
    transition: transform var(--transition-base);
}

.contact-link:hover svg {
    transform: translateX(2px);
}

/* ===== MODERN CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(41, 86, 141, 0.02) 0%, rgba(77, 168, 218, 0.02) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Make form side wider */
    gap: var(--space-3xl); /* Reduced gap for better space utilization */
    align-items: start;
}

.contact-form-side {
    position: relative;
    z-index: 2;
}

.form-container {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(172, 172, 172, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--gold-accent) 50%, var(--royal-navy) 100%);
}

.form-header {
    margin-bottom: var(--space-2xl);
}

.form-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-md);
}

.form-row-modern {
    /* Stack form fields vertically on all screen sizes for better usability */
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.modern-contact-form .form-group {
    margin-bottom: var(--space-lg);
}

.form-submit {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(172, 172, 172, 0.2);
}

.btn-modern {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-lg);
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--gold-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(41, 86, 141, 0.2);
}

/* ===== VISUAL SIDE ===== */
.contact-visual-side {
    position: relative;
    padding: var(--space-2xl);
}

.visual-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm); /* Smaller gap to give more width to cards */
    margin-bottom: var(--space-3xl);
}

.stat-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg); /* Increased vertical padding */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(172, 172, 172, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 120px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--gold-accent) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(41, 86, 141, 0.12);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    margin-bottom: var(--space-sm);
    color: var(--royal-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.stat-number {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* Responsive font size */
    font-weight: 700;
    color: var(--royal-navy);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem); /* Responsive font size */
    color: var(--silver-gray);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap; /* Prevent text wrapping */
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
    margin-bottom: var(--space-3xl);
}

.contact-methods h3 {
    font-size: var(--font-size-xl);
    color: var(--royal-navy);
    margin-bottom: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(41, 86, 141, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    flex-shrink: 0;
}

.method-content h4 {
    font-size: var(--font-size-lg);
    color: var(--royal-navy);
    margin-bottom: var(--space-xs);
}

.method-content a {
    color: var(--royal-blue);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

.method-content a:hover {
    color: var(--royal-navy);
}

.method-content p {
    color: var(--silver-gray);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

/* ===== CONTACT FEATURES ===== */
.contact-features {
    margin-bottom: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(41, 86, 141, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(41, 86, 141, 0.1);
    transform: translateX(4px);
}

.feature-icon {
    color: var(--royal-blue);
    display: inline-flex;
    align-items: center;
    margin-right: var(--space-sm);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ===== DECORATIVE ELEMENTS ===== */
.contact-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: var(--royal-blue);
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: -50px;
    background: var(--royal-blue);
    animation: float-1 6s ease-in-out infinite;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    background: var(--gold-accent);
    animation: float-2 8s ease-in-out infinite;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: -30px;
    background: var(--royal-navy);
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(15px) rotate(-180deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-15px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    color: var(--pure-white);
    padding: var(--space-3xl) 0;
    text-align: center;
    margin-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-headers);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--pure-white);
    color: var(--royal-navy);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--gold-accent);
    color: var(--pure-white);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cta-btn.secondary:hover {
    background: var(--pure-white);
    color: var(--royal-navy);
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(30px) translateY(-30px) rotate(120deg); }
    66% { transform: translateX(-20px) translateY(20px) rotate(240deg); }
}

/* ===== RESPONSIVE CONTACT FORM ===== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .form-group {
        margin-bottom: var(--space-md);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--space-sm);
    }

    .faq-question {
        padding: var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .faq-text {
        font-size: var(--font-size-sm);
    }
    
    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .faq-answer.active {
        max-height: 300px;
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-hero {
        padding: var(--space-xl) 0;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .two-column.enhanced-layout {
        margin-top: var(--space-2xl);
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .form-row-triple {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .contact-alternatives {
        justify-content: center;
        margin-top: var(--space-md);
    }
    
    /* ===== MODERN CONTACT RESPONSIVE ===== */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-visual-side {
        padding: 0;
        order: -1;
    }
    
    .form-container {
        padding: var(--space-xl);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .contact-methods {
        margin-bottom: var(--space-xl);
    }
    
    .contact-method {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .contact-method:hover {
        transform: none;
    }
    
    .contact-features {
        display: none;
    }
    
    .contact-decoration {
        display: none;
    }
    
    .feature-item {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 991px) and (min-width: 769px) {
    .contact-layout {
        gap: var(--space-3xl);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-sm);
    }
    
    .stat-card {
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    .contact-method {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .method-content h4 {
        font-size: var(--font-size-base);
    }
    
    .decoration-1,
    .decoration-2,
    .decoration-3 {
        opacity: 0.05;
    }
}

/* ===== SMALL MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    .contact-section {
        padding: var(--space-2xl) 0;
    }
    
    .form-container {
        padding: var(--space-lg);
        border-radius: var(--radius-md);
    }
    
    .form-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .btn-modern {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--font-size-base);
    }
    
    .stats-grid {
        gap: var(--space-sm);
    }
    
    .stat-card {
        padding: var(--space-sm);
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: var(--font-size-lg);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .contact-methods h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-md);
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
}

/* ===== SALG PAGE SPECIFIC STYLES ===== */

/* Introduction Section */
.intro-section {
    padding: 80px 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 0 -20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #4a90e2;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: #4a90e2;
    color: #ffffff;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    color: #0b1d3c;
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1d3c;
    margin-bottom: 20px;
}

.process-subtitle {
    font-size: 16px;
    color: #555555;
}

/* Timeline - GHL Style */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b1d3c;
    margin-bottom: 15px;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background-color: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b1d3c;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 16px;
    color: #555555;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #0b1d3c;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

/* Guarantees Grid */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin: 80px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(172, 172, 172, 0.1);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.guarantee-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(41, 86, 141, 0.12);
    border-color: var(--royal-blue);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
    background-color: var(--royal-blue);
    color: var(--pure-white);
    transform: scale(1.1);
}

.guarantee-icon i {
    font-size: 36px;
}

.guarantee-card h3 {
    font-family: var(--font-headers);
    font-size: 22px;
    font-weight: 600;
    color: var(--royal-navy);
    margin-bottom: 15px;
}

.guarantee-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    padding: var(--space-3xl) 0;
    margin-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-headers);
    font-size: var(--font-size-3xl);
    color: var(--pure-white);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.cta-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-outline:hover {
    background: var(--pure-white);
    color: var(--royal-navy);
}

/* Salg Page Mobile Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-timeline::before {
        left: 45px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 30px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .guarantees-grid {
        max-width: 100%;
        margin: 40px 0;
    }
    
    .guarantee-card {
        padding: 20px 15px;
    }
}

/* ===== CONTENT SECTIONS (for legal/info pages) ===== */
.content-section {
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-lg);
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section.bg-light {
    background-color: #fafbfc;
}

.content-text {
    color: var(--royal-navy);
    line-height: 1.7;
}

.content-text h2 {
    color: var(--royal-navy);
    font-family: var(--font-headers);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-2xl);
}

.content-text h2:first-child {
    margin-top: 0;
}

.content-text h3 {
    color: var(--royal-blue);
    font-family: var(--font-headers);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
}

.content-text p {
    margin-bottom: var(--space-md);
    color: var(--royal-navy);
}

.content-text ul,
.content-text ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
    color: var(--royal-navy);
}

.content-text li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.content-text strong {
    color: var(--royal-navy);
    font-weight: 600;
}

.content-text a {
    color: var(--royal-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.content-text a:hover {
    border-bottom-color: var(--royal-blue);
}

/* Contact info styling */
.contact-info {
    background: var(--pale-blue);
    border-left: 4px solid var(--royal-blue);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.contact-info p {
    margin-bottom: var(--space-sm);
    color: var(--royal-navy);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie table styling */
.cookie-table {
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cookie-table thead {
    background: var(--royal-blue);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    color: var(--royal-navy);
    vertical-align: top;
}

.cookie-table tbody tr:hover {
    background-color: var(--pale-blue);
}

@media (max-width: 768px) {
    .content-section {
        padding: var(--space-2xl) 0;
    }
    
    .content-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .content-text h3 {
        font-size: var(--font-size-lg);
    }
    
    .cookie-table {
        font-size: var(--font-size-sm);
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: var(--space-sm);
    }
}

/* ===== SIMPLE COMPONENTS FOR GARANTIER & VEDLIKEHOLD ===== */

/* ===== WARRANTY CARDS (Garantier) ===== */
.warranty-types-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.warranty-card-simple {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
}

.warranty-card-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.warranty-card-simple .warranty-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.warranty-card-simple .warranty-title {
    color: var(--royal-navy);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.warranty-card-simple .warranty-duration {
    background: rgba(41, 86, 141, 0.1);
    color: var(--royal-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.warranty-card-simple .warranty-description {
    color: var(--silver-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.warranty-card-simple .warranty-coverage {
    list-style: none;
    padding: 0;
}

.warranty-card-simple .warranty-coverage li {
    padding: 0.5rem 0;
    color: var(--silver-gray);
    position: relative;
    padding-left: 1.5rem;
}

.warranty-card-simple .warranty-coverage li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: bold;
}

.warranty-card-simple .warranty-note {
    font-size: 0.9rem;
    color: var(--silver-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* ===== COVERAGE LISTS (Garantier) ===== */
.coverage-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.covered-list,
.not-covered-list {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.covered-list {
    border-top: 4px solid #059669;
}

.not-covered-list {
    border-top: 4px solid #dc2626;
}

.list-title {
    font-size: 1.3rem;
    color: var(--royal-navy);
    margin-bottom: 1.5rem;
}

.coverage-items {
    list-style: none;
    padding: 0;
}

.coverage-items li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-items li:last-child {
    border-bottom: none;
}

.coverage-items.included li i {
    color: #059669;
}

.coverage-items.excluded li i {
    color: #dc2626;
}

/* ===== WARRANTY PROCESS (Garantier) ===== */
.warranty-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--royal-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step .step-title {
    color: var(--royal-navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step .step-description {
    color: var(--silver-gray);
    line-height: 1.6;
}

/* ===== SERVICE CARDS (Vedlikehold) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card .service-title {
    color: var(--royal-navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card .service-description {
    color: var(--silver-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card .service-features li {
    padding: 0.6rem 0;
    color: var(--silver-gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-card .service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--royal-blue);
    font-weight: bold;
    font-size: 1rem;
}

/* ===== CARE TIPS (Vedlikehold) ===== */
.care-tips {
    margin-top: 2rem;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.care-tip {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.care-tip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.care-tip .care-icon {
    width: 50px;
    height: 50px;
    background: rgba(41, 86, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--royal-blue);
    font-size: 1.3rem;
}

.care-tip h4 {
    color: var(--royal-navy);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.care-tip p {
    color: var(--silver-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== REMOVE OLD INTERACTIVE STYLES ===== */
/* Commenting out old interactive styles that are no longer needed */

/* ===== WARRANTY TABS (Garantier) - REMOVED ===== */
/* .warranty-tabs-container {
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 3rem;
}

.warranty-tabs {
    display: flex;
    background: var(--pale-blue);
    border-bottom: 1px solid rgba(41, 86, 141, 0.1);
}

.warranty-tab {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-headers);
    font-weight: 600;
    color: var(--silver-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.warranty-tab.active {
    color: var(--royal-blue);
    background: var(--pure-white);
}

.warranty-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--accent-blue));
}

.warranty-tab:hover:not(.active) {
    color: var(--royal-blue);
    background: rgba(255, 255, 255, 0.6);
}

.warranty-content {
    padding: 0;
}

.warranty-tab-content {
    display: none;
    padding: 2.5rem;
    animation: fadeIn 0.4s ease-in;
}

.warranty-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.warranty-card-enhanced {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(41, 86, 141, 0.08);
}

.warranty-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.warranty-icon.animated {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.warranty-icon.animated:hover {
    transform: scale(1.1) rotate(5deg);
}

.warranty-title-section h3 {
    margin: 0 0 0.5rem 0;
    color: var(--royal-navy);
    font-size: 1.4rem;
}

.warranty-duration.highlight {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.warranty-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(41, 86, 141, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(41, 86, 141, 0.08);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--royal-blue);
    font-size: 1.1rem;
}

.warranty-cta {
    text-align: center;
    margin-top: 2rem;
}

.warranty-details-btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.warranty-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 86, 141, 0.3);
}

/* ===== ACCORDION STYLES (Coverage Section) ===== */
.coverage-accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: var(--pure-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.covered-accordion .accordion-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.excluded-accordion .accordion-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-title i {
    font-size: 1.5rem;
}

.covered-accordion .accordion-title i {
    color: #059669;
}

.excluded-accordion .accordion-title i {
    color: #dc2626;
}

.accordion-title h3 {
    margin: 0;
    color: var(--royal-navy);
    font-size: 1.3rem;
}

.accordion-toggle {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.coverage-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.coverage-item.included {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #059669;
}

.coverage-item.excluded {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
}

.coverage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.coverage-item i {
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.coverage-item.included i {
    color: #059669;
}

.coverage-item.excluded i {
    color: #dc2626;
}

.item-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--royal-navy);
    font-size: 1.1rem;
}

.item-content p {
    margin: 0;
    color: var(--silver-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== INTERACTIVE PROCESS TIMELINE ===== */
.warranty-process-interactive {
    margin-top: 2rem;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--accent-blue) 100%);
    border-radius: 2px;
    z-index: 1;
}

.process-step-enhanced {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 120px;
}

.step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--pure-white);
    border: 4px solid var(--royal-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step-enhanced:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(41, 86, 141, 0.3);
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 0.2rem;
}

.step-icon {
    font-size: 1rem;
    color: var(--royal-blue);
}

.step-content-enhanced {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
}

.step-content-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-title {
    margin: 0 0 1rem 0;
    color: var(--royal-navy);
    font-size: 1.3rem;
}

.step-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--silver-gray);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--royal-blue);
    width: 20px;
}

.step-cta-btn {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 86, 141, 0.4);
}

/* ===== QUICK ACTION CARDS ===== */
.warranty-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.quick-action-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quick-action-card i {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.quick-action-card h4 {
    margin: 0 0 1rem 0;
    color: var(--royal-navy);
    font-size: 1.2rem;
}

.quick-action-card p {
    color: var(--silver-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ===== SERVICE SELECTOR (Vedlikehold) ===== */
.service-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--pure-white);
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 86, 141, 0.3);
}

.services-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-enhanced {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon.animated {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon.animated {
    transform: scale(1.1) rotate(5deg);
}

.service-meta h3 {
    margin: 0 0 0.5rem 0;
    color: var(--royal-navy);
    font-size: 1.3rem;
}

.service-duration {
    background: rgba(41, 86, 141, 0.1);
    color: var(--royal-blue);
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-features-enhanced {
    margin: 1.5rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--silver-gray);
    font-size: 0.95rem;
}

.feature-row i {
    color: var(--royal-blue);
    width: 20px;
}

.service-pricing {
    text-align: center;
    margin: 1.5rem 0;
}

.price-range {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.service-select-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 86, 141, 0.4);
}

/* ===== INTERACTIVE CARE TIPS ===== */
.care-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.care-category {
    background: var(--pure-white);
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.care-category.active,
.care-category:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

.care-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.care-content.active {
    display: block;
}

.care-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.care-tip-enhanced {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 86, 141, 0.1);
    transition: all 0.3s ease;
}

.care-tip-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.care-tip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.care-tip-header .care-icon.animated {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.care-tip-enhanced:hover .care-icon.animated {
    transform: scale(1.1) rotate(5deg);
}

.care-tip-header h4 {
    margin: 0 0 0.5rem 0;
    color: var(--royal-navy);
    font-size: 1.2rem;
    flex-grow: 1;
    margin-left: 1rem;
}

.tip-level {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tip-level.basic {
    background: #dbeafe;
    color: #1d4ed8;
}

.tip-level.important {
    background: #fef3c7;
    color: #d97706;
}

.tip-level.expert {
    background: #f3e8ff;
    color: #7c3aed;
}

.tip-level.critical {
    background: #fee2e2;
    color: #dc2626;
}

.expand-btn {
    background: var(--royal-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-1px);
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 1rem;
}

.expanded-content.active {
    max-height: 500px;
}

.water-resistance-guide,
.storage-conditions {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.resistance-level,
.condition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(41, 86, 141, 0.05);
    border-radius: 6px;
}

.resistance-level .level {
    font-weight: 600;
    color: var(--royal-blue);
}

.condition i {
    color: var(--royal-blue);
    margin-right: 0.5rem;
}

/* ===== ENHANCED CTA SECTION ===== */
.cta-section.enhanced {
    background: linear-gradient(135deg, var(--royal-navy) 0%, var(--royal-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></svg>');
}

.cta-content-enhanced {
    position: relative;
    z-index: 2;
}

.quick-booking-panel {
    background: var(--pure-white);
    border-radius: 12px;
    margin-top: 2rem;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.quick-booking-panel.active {
    max-height: 800px;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(41, 86, 141, 0.1);
}

.booking-header h3 {
    margin: 0;
    color: var(--royal-navy);
}

.close-panel {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--silver-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-panel:hover {
    color: var(--royal-blue);
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--royal-navy);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(41, 86, 141, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-actions {
    text-align: center;
    margin-top: 1rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--silver-gray);
    font-size: 0.9rem;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.benefit-item i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-content h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ===== MOBILE RESPONSIVE FOR INTERACTIVE COMPONENTS ===== */
@media (max-width: 768px) {
    /* Warranty Tabs Mobile */
    .warranty-tabs {
        flex-direction: column;
    }

    .warranty-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .warranty-features-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    /* Process Timeline Mobile */
    .process-step-enhanced {
        padding-left: 0;
        text-align: center;
    }

    .step-circle {
        position: relative;
        margin: 0 auto 1.5rem;
    }

    .timeline-line {
        display: none;
    }

    .warranty-quick-actions {
        grid-template-columns: 1fr;
    }

    /* Service Selector Mobile */
    .service-filter-tabs {
        flex-direction: column;
        align-items: center;
    }

    .services-grid-interactive {
        grid-template-columns: 1fr;
    }

    /* Care Tips Mobile */
    .care-categories {
        flex-direction: column;
        align-items: center;
    }

    .care-grid-enhanced {
        grid-template-columns: 1fr;
    }

    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }
}