:root {
    /* Color Palette - Glacial Light Theme */
    --bg-dark: #f0f9ff;
    /* Pale Ice Blue/White */
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.95);

    /* Soft Ice Blue - Primary Brand */
    --ice-blue-100: #e0fbfc;
    --ice-blue-300: #0284c7;
    /* Darker Sky Blue for secondary text */
    --ice-blue-500: #0369a1;
    /* Deep Blue for primary accents/headings */
    --ice-blue-glow: rgba(3, 105, 161, 0.25);

    /* Aurora Accents */
    --aurora-pink: #d946ef;
    /* Magenta - darker for contrast */
    --aurora-green: #0d9488;
    /* Teal - darker for contrast */
    --aurora-gradient: linear-gradient(135deg, var(--ice-blue-500), var(--aurora-pink));

    /* Text */
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #475569;
    /* Slate 600 */

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* H1: White to Ice Blue Gradient for visible contrast on dark overlay */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(to right, #ffffff, var(--ice-blue-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    color: var(--ice-blue-500);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btn-gradient {
    background: var(--aurora-gradient);
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.4);
}

.header-cta {
    margin-left: 20px;
}

.btn-primary {
    background: #38bdf8;
    /* Vivid Ice Blue */
    color: #ffffff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
    background: #7dd3fc;
    /* Lighter blue on hover */
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    /* Aligns button to the left */
    margin-top: 2rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--aurora-pink);
    color: var(--aurora-pink);
}

.btn-secondary:hover {
    background: rgba(255, 102, 178, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 102, 178, 0.3);
}

/* Header */
header {
    height: var(--header-height);
    background: rgba(240, 249, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

header .container {
    height: 100%;
}

nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--aurora-pink);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    /* Darker overlay to support white text */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('images/diamondBeachSunrise.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--ice-blue-100);
    /* Very light ice blue */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: #f0f6fc;
    /* Off-white for hero description */
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-bg-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--ice-blue-500);
    top: -100px;
    right: -100px;
    animation: float 10s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--aurora-pink);
    bottom: 20%;
    left: -50px;
    animation: float 8s infinite alternate-reverse;
}

/* Feature Grid */
.grid-section {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(217, 70, 239, 0.1));
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--ice-blue-500);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--ice-blue-300);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #e0f2fe;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--ice-blue-500);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--aurora-pink);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: height 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        height: 300px;
    }
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

/* Page Hero (smaller banner for subpages) */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--ice-blue-500) 0%, #0ea5e9 50%, var(--aurora-pink) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/diamond-beach-iceland-ice-pattern-placeholder.jpg') center/cover;
    opacity: 0.1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-hero .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

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

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--ice-blue-500);
}

.breadcrumbs a:hover {
    color: var(--aurora-pink);
}

.breadcrumbs .current {
    color: var(--text-muted);
}

/* Content Sections */
.content-section {
    padding: 40px 0;
}

.content-section:nth-child(even) {
    background: rgba(224, 242, 254, 0.3);
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--ice-blue-300);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Prose Content */
.prose {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.prose p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.prose strong {
    color: var(--text-main);
}

.prose a {
    color: var(--ice-blue-500);
    text-decoration: underline;
    text-decoration-color: rgba(3, 105, 161, 0.3);
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--aurora-pink);
    text-decoration-color: var(--aurora-pink);
}

/* Quick Facts Box */
.quick-facts {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.05), rgba(217, 70, 239, 0.05));
    border: 1px solid rgba(3, 105, 161, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 2rem 0;
}

.quick-facts h3 {
    color: var(--ice-blue-500);
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-facts h3 i {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-facts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.quick-facts li i {
    color: var(--ice-blue-500);
    margin-top: 3px;
    flex-shrink: 0;
}

.quick-facts .label {
    font-weight: 600;
    color: var(--text-main);
}

.quick-facts .value {
    color: var(--text-muted);
}

/* Callout Boxes */
.callout {
    border-radius: 12px;
    padding: 20px 25px;
    margin: 1.5rem 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.callout i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.callout-content p {
    margin: 0;
    font-size: 0.95rem;
}

.callout-tip {
    background: rgba(13, 148, 136, 0.1);
    border-left: 4px solid var(--aurora-green);
}

.callout-tip i {
    color: var(--aurora-green);
}

.callout-tip h4 {
    color: var(--aurora-green);
}

.callout-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
}

.callout-warning i {
    color: #f59e0b;
}

.callout-warning h4 {
    color: #d97706;
}

.callout-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.callout-danger i {
    color: #ef4444;
}

.callout-danger h4 {
    color: #dc2626;
}

.callout-info {
    background: rgba(3, 105, 161, 0.1);
    border-left: 4px solid var(--ice-blue-500);
}

.callout-info i {
    color: var(--ice-blue-500);
}

.callout-info h4 {
    color: var(--ice-blue-500);
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
}

.faq-section h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.faq-section h2:first-child {
    margin-top: 0;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
    color: var(--ice-blue-500);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--ice-blue-500);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question {
    color: var(--ice-blue-500);
    background: rgba(14, 165, 233, 0.05);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-content a {
    color: var(--ice-blue-500);
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Data Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.data-table thead {
    background: linear-gradient(135deg, var(--ice-blue-500), var(--ice-blue-300));
    color: white;
}

.data-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.data-table tbody tr:hover {
    background: rgba(3, 105, 161, 0.03);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table thead th {
    background: var(--ice-blue-500);
    color: white;
    font-weight: 600;
}

.comparison-table thead th:first-child {
    background: #0284c7;
}

.comparison-table tbody th {
    background: rgba(3, 105, 161, 0.05);
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
}

.comparison-table .check {
    color: var(--aurora-green);
}

.comparison-table .cross {
    color: #ef4444;
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: inherit;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(3, 105, 161, 0.03);
}

.faq-question i {
    color: var(--ice-blue-500);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(217, 70, 239, 0.1));
    border: 2px dashed rgba(3, 105, 161, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 30px;
    text-align: center;
    margin: 1.5rem 0;
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--ice-blue-500);
    margin-bottom: 15px;
}

.image-placeholder span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-col-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-box h4 {
    color: var(--ice-blue-500);
    margin-bottom: 15px;
    font-size: 1rem;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    margin-bottom: 10px;
}

.sidebar-box a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-box a:hover {
    color: var(--aurora-pink);
}

.sidebar-box a i {
    color: var(--ice-blue-500);
    width: 16px;
}

/* Tour Cards */
.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--ice-blue-500), var(--aurora-pink));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-image i {
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

.tour-card-content {
    padding: 25px;
}

.tour-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tour-card .duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tour-card .duration i {
    color: var(--ice-blue-500);
}

.tour-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tour-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ice-blue-500);
    margin-bottom: 15px;
}

.tour-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.affiliate-disclosure i {
    color: #f59e0b;
    margin-right: 8px;
}

/* Itinerary Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ice-blue-500), var(--aurora-pink));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--ice-blue-500);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.timeline-item h4 {
    color: var(--ice-blue-500);
    margin-bottom: 0.5rem;
}

.timeline-item .time {
    font-size: 0.85rem;
    color: var(--aurora-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ice-blue-500), var(--aurora-pink));
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--ice-blue-500);
}

.cta-section .btn-primary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

/* Related Pages Grid */
.related-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.related-card i {
    font-size: 2rem;
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.related-card h4 {
    margin-bottom: 10px;
    color: var(--ice-blue-300);
}

.related-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
}

.related-card .link {
    color: var(--ice-blue-500);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-card:hover .link {
    color: var(--aurora-pink);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown>a::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(3, 105, 161, 0.05);
    color: var(--ice-blue-500);
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .two-col,
    .two-col-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .quick-facts ul {
        grid-template-columns: 1fr;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 15px;
    }

    .content-section {
        padding: 40px 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu a {
        padding: 8px 15px;
    }
}