/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* MINIMAL 3-COLOR PALETTE - Only these 3 colors used throughout the design */
    --primary-color: #1e3a8a;           /* Primary Blue - Dark blue for headers, borders, primary actions */
    --secondary-color: #0ea5e9;         /* Light Blue - Lighter blue for secondary elements, gradients */
    --accent-color: #ea580c;            /* Warm Orange - Contrast color for warnings, highlights, accents */
    --danger-color: #dc2626;            /* Danger Red - For forbidden/restricted areas */
    
    /* Neutral Colors */
    --dark-color: #000000;              /* Pure Black for text */
    --light-color: #ffffff;             /* Pure White */
    --gray-color: #6b7280;              /* Medium gray for secondary text */
    --light-gray: #f8fafc;              /* Very light gray backgrounds */
    --border-color: #e2e8f0;            /* Light gray borders */
    
    /* Gradients - Only using our 3 colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

/* Text colors for different backgrounds */
.light-bg, .light-bg * {
    color: var(--dark-color);
}

.light-bg p, .light-bg .gray-text {
    color: var(--gray-color);
}

.colored-bg, .colored-bg * {
    color: var(--light-color);
}

.colored-bg p {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--light-color);
    color: var(--primary-color);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section with Video Background */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--light-color);
}

.hero, .hero * {
    color: var(--light-color);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(14, 165, 233, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section.alt-bg {
    background: var(--light-gray);
}

/* Section Text Colors - More specific selectors */
.section h1, .section h2, .section h3, .section h4, .section h5, .section h6 {
    color: var(--dark-color);
}

.section p, .section li {
    color: var(--gray-color);
}

/* Keep colored backgrounds with white text */
.card-header, .card-header * {
    color: var(--light-color) !important;
}

.newsletter, .newsletter * {
    color: var(--light-color) !important;
}

.hero, .hero * {
    color: var(--light-color) !important;
}

.footer, .footer * {
    color: var(--light-color) !important;
}

.page-header, .page-header * {
    color: var(--light-color) !important;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.video-placeholder {
    background: var(--light-gray);
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

/* Safety Section */
.safety {
    background: var(--light-color);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.safety-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.safety-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.safety-item ul {
    list-style: none;
}

.safety-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.safety-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Buy Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.brand-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-centers, .accessories {
    margin-top: 4rem;
}

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

.service-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.accessories ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.accessories li {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.accessories a {
    color: var(--light-color);
    text-decoration: none;
}

/* Locations Section */
.locations-category {
    margin-bottom: 4rem;
}

.locations-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.location-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.location-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card ul {
    list-style: none;
}

.location-card li {
    padding: 0.3rem 0;
    color: var(--gray-color);
}

/* Community Section */
.community {
    background: var(--light-color);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.community-item {
    text-align: center;
    padding: 2rem;
}

.community-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: var(--light-color);
}

.newsletter, .newsletter * {
    color: var(--light-color);
}

.newsletter h3 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--light-color);
    color: #000000 !important;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray-color);
}

.newsletter-form button {
    white-space: nowrap;
    width: 100%;
}

/* EFESA Privacy Checkbox Styling - Unique class names to avoid conflicts */
.efesa-privacy-check,
.efesa-newsletter-privacy,
.efesa-popup-privacy {
    display: flex !important;
    text-align: left !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

.efesa-privacy-check input[type="checkbox"],
#efesa-newsletter-consent,
#efesa-popup-consent {
    display: inline-block !important;
    visibility: visible !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    margin-top: 0.2rem !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.efesa-privacy-check label,
label[for="efesa-newsletter-consent"],
label[for="efesa-popup-consent"] {
    display: inline-block !important;
    visibility: visible !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.efesa-privacy-check a {
    text-decoration: underline !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.efesa-privacy-check a:hover {
    opacity: 0.8 !important;
}

/* Override any external CSS trying to hide EFESA privacy elements */
input[name="OPT_IN"] {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.popup-form {
    flex-direction: column;
    gap: 1rem;
}

.popup-form .gdpr-consent {
    justify-self: stretch;
    width: 100%;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form select {
    padding-right: 40px;
    background-color: white;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer, .footer * {
    color: var(--light-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-color);
    color: var(--gray-color);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background: var(--light-color);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-color);
}

.popup-close:hover {
    color: var(--dark-color);
}

.popup-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Page Styles */

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header, .page-header * {
    color: var(--light-color);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--light-color);
}

.safety-header {
    background: var(--gradient-accent);
}

/* Navigation Pills */
.quick-nav {
    background: var(--light-gray);
    padding: 2rem 0;
}

.nav-pills {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-pill {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-pill:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Overview Section */
.overview {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.overview-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Association */
.about-association {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-points {
    margin: 2rem 0;
}

.mission-point h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mission-point ul {
    list-style: none;
    padding-left: 0;
}

.mission-point li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mission-point li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Quick Links */
.quick-links {
    background: var(--light-gray);
    padding: 80px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quick-link-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    color: var(--dark-color);
}

.quick-link-card:hover .link-arrow {
    transform: translateX(5px);
}

.quick-link-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.link-arrow {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
}

.locations-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-color);
}

.quick-link-card h3 {
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.quick-link-card p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-text h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.video-embed {
    margin-top: 2rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.video-embed h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: 3rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table-wrapper h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    font-size: 0.9rem;
    vertical-align: middle;
}

.efoil-row {
    background: rgba(30, 58, 138, 0.03);
}

.esurf-row {
    background: rgba(14, 165, 233, 0.03);
}

.motorsurf-row {
    background: rgba(245, 158, 11, 0.03);
}

.comparison-table .quiet {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table .low {
    color: var(--accent-color);
    font-weight: 600;
}

.comparison-table .loud {
    color: var(--accent-color);
    font-weight: 600;
}

/* Brands Section */
.brands-intro h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-tables {
    margin-top: 4rem;
}

.comparison-tables h3,
.comparison-tables h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Service and Support Section */
.service-support-section h3,
.service-support-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-support-section h4 {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.services-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

.why-authorized {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    border-left: 3px solid var(--primary-color);
}

.why-authorized h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Centers */
.service-centers-list {
    margin-top: 3rem;
}

.service-centers-list h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.center-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.center-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.center-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
}

.center-header, .center-header * {
    color: var(--light-color) !important;
}

.center-header h4 {
    color: var(--light-color);
    margin: 0;
    font-weight: 600;
}

.center-content {
    padding: 2rem;
}

.center-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.center-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.center-content li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.center-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.center-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.center-content a:hover {
    text-decoration: underline;
}

/* Accessories Section */
.accessories-section h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.accessory-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.accessory-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accessory-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.accessory-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.accessory-card a:hover {
    text-decoration: underline;
}

/* Where to Ride Section */
.locations-section {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.country-section {
    margin-bottom: 4rem;
}

.country-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.location-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.location-card.featured {
    border-left: 3px solid var(--secondary-color);
}

.location-card.warning {
    border-left: 3px solid var(--accent-color);
}

.location-card.caution {
    border-left: 3px solid var(--accent-color);
}

.location-card.premium {
    border-left: 3px solid var(--primary-color);
}

.location-card.forbidden {
    border-left: 3px solid var(--danger-color);
}

.location-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.location-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.location-status.recommended {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.location-status.restricted {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.location-status.check {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.location-status.premium {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

.location-status.forbidden {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger-color);
}

.location-content {
    padding: 1.5rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.location-notes,
.location-highlights {
    margin: 1.5rem 0;
}

.location-notes h5,
.location-highlights h5 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.location-notes ul,
.location-highlights ul {
    list-style: none;
    padding-left: 0;
}

.location-notes li,
.location-highlights li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.location-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.warning-notes {
    background: rgba(14, 165, 233, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin: 1.5rem 0;
}

.warning-notes h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.warning-notes li::before {
    background: var(--primary-color);
}

.location-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.location-content a:hover {
    text-decoration: underline;
}

/* Flight Destinations */
.flight-destinations {
    margin-top: 4rem;
}

.flight-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(14, 165, 233, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 3px solid var(--secondary-color);
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.warning-text {
    color: var(--dark-color);
    font-size: 0.95rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.destination-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.destination-card.verified {
    border-left: 3px solid var(--secondary-color);
}

.destination-card.premium {
    border-left: 3px solid var(--primary-color);
}

.destination-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.destination-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.destination-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.destination-status.verified {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.destination-status.unverified {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.destination-status.premium {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

.destination-content {
    padding: 2rem;
}

.destination-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 0.95rem;
}

.destination-features ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.destination-features li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.destination-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.destination-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.destination-content a:hover {
    text-decoration: underline;
}

/* Alt Background */
.alt-bg {
    background: var(--light-gray);
}

/* Comparison Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    padding: 1.5rem;
    color: var(--light-color);
    text-align: center;
}

.card-header, .card-header h3, .card-header p, .card-header * {
    color: var(--light-color) !important;
}

.card-header.efoil {
    background: var(--gradient-primary);
}

.card-header.esurf {
    background: var(--gradient-secondary);
}

.card-header.motorsurf {
    background: var(--gradient-accent);
}

.card-header h3 {
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.card-subtitle {
    opacity: 0.9;
    font-style: italic;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-feature {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.spec-value {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

.spec-value.quiet {
    color: var(--primary-color);
}

.spec-value.low {
    color: var(--accent-color);
}

.spec-value.loud {
    color: var(--accent-color);
}

/* Comparison Table */
.comparison-table-wrapper {
    margin-top: 3rem;
}

.comparison-table-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table,
.comparison-table-detailed {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td,
.comparison-table-detailed th,
.comparison-table-detailed td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table-detailed th {
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
}

.comparison-table th, .comparison-table th *,
.comparison-table-detailed th, .comparison-table-detailed th * {
    color: var(--light-color) !important;
}

.comparison-table-detailed th {
    font-size: 0.9rem;
}

.comparison-table-detailed td {
    font-size: 0.9rem;
    vertical-align: top;
}

.efoil-row {
    background: rgba(30, 58, 138, 0.05);
}

.esurf-row {
    background: rgba(14, 165, 233, 0.05);
}

.motorsurf-row {
    background: rgba(245, 158, 11, 0.05);
}

.premium-row {
    background: rgba(30, 58, 138, 0.05);
}

.value-row {
    background: rgba(14, 165, 233, 0.05);
}

.mid-row {
    background: rgba(245, 158, 11, 0.05);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Price Legend */
.price-legend {
    margin-top: 2rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.legend-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.legend-item.value .legend-color {
    background: rgba(52, 152, 219, 0.3);
}

.legend-item.mid .legend-color {
    background: rgba(241, 196, 15, 0.3);
}

.legend-item.premium .legend-color {
    background: rgba(155, 89, 182, 0.3);
}

/* Why eFoil Section */
.why-efoil {
    text-align: center;
}

.why-efoil h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-item {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Removed colorful top borders from advantage items for cleaner look */

.advantage-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.advantage-item h3 {
    color: var(--dark-color);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.advantage-item p {
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Brands Showcase */
.brands-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Style for last item when it's alone in a row */
.brands-showcase > *:last-child:nth-child(2n + 1) {
    grid-column: 1 / span 2;
    margin: 0 auto;
    max-width: 50%;
}

.brand-showcase {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-showcase:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-logo {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 2rem;
    text-align: center;
}

.brand-logo h3 {
    color: var(--light-color);
    margin: 0;
    font-size: 2rem;
}

.brand-info {
    padding: 2rem;
}

.brand-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Warning Section */
.warning-section {
    background: rgba(14, 165, 233, 0.1);
    border-left: 3px solid var(--primary-color);
}

.warning-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 3px solid var(--secondary-color);
}

.warning-box {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent-color);
    position: relative;
}

.warning-box::before {
    content: 'UPOZORNENIE';
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.warning-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.warning-tips {
    margin-top: 1.5rem;
}

.warning-tips h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.warning-tips ul {
    list-style: none;
    padding-left: 0;
}

.warning-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.warning-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.recommendation {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    color: var(--secondary-color);
}

/* Services Section */
.service-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-offered {
    margin-bottom: 4rem;
}

.services-offered h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.service-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Centers */
.service-centers-list {
    margin-top: 3rem;
}

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

.centers-grid > .center-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

@supports not (selector(:nth-child(3n + 1))) {
    .centers-grid > .center-card:last-child:nth-child(4) {
        grid-column: 2 / 3;
    }
}

.center-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.center-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.center-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
}

.center-header h4 {
    color: var(--light-color);
    margin: 0;
}

.center-content {
    padding: 1.5rem;
}

.center-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.center-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.center-content li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.center-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.accessory-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.accessory-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.accessory-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Location Cards */
.country-section {
    margin-bottom: 4rem;
}

.country-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

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

.location-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.location-card.featured {
    border: 2px solid var(--secondary-color);
}

.location-card.warning {
    border: 2px solid var(--accent-color);
}

.location-card.caution {
    border: 2px solid var(--secondary-color);
}

.location-card.premium {
    border: 2px solid var(--primary-color);
}

.location-card.forbidden {
    border: 2px solid var(--danger-color);
}

.location-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.location-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-status.recommended {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.location-status.restricted {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.location-status.check {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.location-status.premium {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

.location-status.forbidden {
    background: rgba(220, 38, 38, 0.1);
    color: var(--danger-color);
}

.location-content {
    padding: 1.5rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: var(--dark-color);
}

.location-notes,
.location-highlights {
    margin: 1.5rem 0;
}

.location-notes h5,
.location-highlights h5 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.location-notes ul,
.location-highlights ul {
    list-style: none;
    padding-left: 0;
}

.location-notes li,
.location-highlights li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.location-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.location-highlights li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

.warning-notes {
    background: rgba(234, 88, 12, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.warning-notes h5 {
    color: var(--accent-color);
}

.warning-notes li::before {
    color: var(--accent-color);
}

/* Flight Destinations */
.flight-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(234, 88, 12, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 3px solid var(--accent-color);
}

.warning-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.warning-text {
    color: var(--accent-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.destination-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.destination-card.verified {
    border: 2px solid var(--secondary-color);
}

.destination-card.premium {
    border: 2px solid var(--primary-color);
}

.destination-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.destination-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.destination-status.verified {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.destination-status.unverified {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.destination-status.premium {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.destination-content {
    padding: 1.5rem;
}

.destination-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-style: italic;
}

.destination-features ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.destination-features li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.destination-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Services and Rentals */
.services-grid {
    display: grid;
    gap: 4rem;
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.service-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.service-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
}

.service-header h4 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.service-location {
    opacity: 0.9;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-pricing {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-label {
    color: var(--gray-color);
}

.price-value {
    font-weight: 600;
    color: var(--primary-color);
}

.course-levels {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.level-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.level-item:last-child {
    border-bottom: none;
}

.level-name {
    font-weight: 500;
}

.level-duration {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.level-price {
    font-weight: 600;
    color: var(--primary-color);
}

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

.tip-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.tip-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Safety Equipment */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.equipment-card.mandatory {
    border: 2px solid var(--accent-color);
}

.equipment-card.recommended {
    border: 2px solid var(--secondary-color);
}

.equipment-icon {
    font-size: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
}

.equipment-content {
    padding: 1.5rem;
}

/* New Equipment Grid for Homepage - Icon-free design */
.safety-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.safety-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.equipment-card {
    flex: 0 1 320px;
    max-width: 400px;
}

.equipment-card.tip-card {
    flex: 0 1 calc(2 * 320px + 2rem);
    max-width: calc(2 * 400px + 2rem);
}

/* Tip Section with Image */
.tip-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary-color);
}

.tip-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tip-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.tip-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.tip-text p {
    margin: 0;
    line-height: 1.6;
    color: var(--gray-color);
}

.tip-text strong {
    color: var(--primary-color);
}

.tip-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .tip-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip-image img {
        height: 250px;
    }
}

/* Other Places Section */
.other-places-section h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.other-place-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 3px solid var(--secondary-color);
}

.other-place-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.other-place-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.service-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.other-place-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.other-place-card a:hover {
    text-decoration: underline;
}

/* Standard bullet points for location notes */
.standard-bullets {
    list-style: disc !important;
    padding-left: 1.5rem !important;
}

.standard-bullets li {
    padding: 0.3rem 0 !important;
    padding-left: 0 !important;
    position: relative !important;
    line-height: 1.5 !important;
    font-size: 0.95rem !important;
}

.standard-bullets li::before {
    display: none !important;
}

.equipment-card {
    background: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    padding: 2.5rem 2rem 2rem;
}

.equipment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.equipment-card.helmet {
    border-top: 3px solid var(--primary-color);
}

.equipment-card.vest {
    border-top: 3px solid var(--primary-color);
}

.equipment-card.reflex {
    border-top: 3px solid var(--primary-color);
}

.equipment-card.gps {
    border-top: 3px solid var(--secondary-color);
}

.equipment-card.tip-card {
    border-top: 3px solid var(--secondary-color);
}

.equipment-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}

.equipment-badge.tip-badge {
    background: var(--secondary-color);
}

.equipment-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.tip-content-wrapper .tip-image-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.tip-content-wrapper .tip-image-wrapper img {
    width: auto;
    max-width: 70%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.safety-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Community Section */
.community-features {
    margin-bottom: 3rem;
}

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

.community-item {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.community-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.community-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.community-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.newsletter-card .community-indicator {
    background: var(--primary-color);
}

.events-card .community-indicator {
    background: var(--primary-color);
}

.forum-card .community-indicator {
    background: var(--primary-color);
}

.partners-card .community-indicator {
    background: var(--primary-color);
}

.community-item h3 {
    color: var(--dark-color);
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.community-item p {
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.membership-options {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Partners Section */
.partners-section h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-color);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--secondary-color);
}

.partner-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.partner-content p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--secondary-color);
    font-weight: 600;
}

.partner-link span {
    transition: var(--transition);
    display: inline-block;
}

.partner-card:hover .partner-link span {
    transform: translateX(-5px);
}

.membership-options h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipment-card {
        flex-direction: column;
        text-align: center;
    }

    .brands-showcase {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons div {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table-wrapper {
        padding: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .comparison-table th {
        font-size: 0.8rem;
    }

    /* Locations grid responsive */
    .locations-grid {
        grid-template-columns: 1fr;
    }

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

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

.equipment-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.equipment-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.equipment-card.recommended .equipment-status {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
}

.equipment-details,
.equipment-features,
.equipment-tips,
.equipment-benefits {
    margin: 1.5rem 0;
}

.equipment-details h4,
.equipment-features h4,
.equipment-tips h4,
.equipment-benefits h4 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.equipment-details ul,
.equipment-features ul,
.equipment-tips ul,
.equipment-benefits ul {
    list-style: none;
    padding-left: 0;
}

.equipment-details li,
.equipment-features li,
.equipment-tips li,
.equipment-benefits li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.equipment-details li::before,
.equipment-features li::before,
.equipment-tips li::before,
.equipment-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.equipment-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.safety-note {
    display: flex;
    gap: 1rem;
    background: rgba(14, 165, 233, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 3px solid var(--secondary-color);
}

.note-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.note-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.note-content p {
    color: var(--primary-color);
    margin: 0;
}

/* Safety Rules */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.rule-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.rule-number {
    background: var(--primary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.rule-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.rule-content p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

/* Emergency Contacts */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.emergency-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.emergency-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    color: var(--gray-color);
}

.contact-number {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.emergency-apps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.app-name {
    font-weight: 600;
    color: var(--primary-color);
}

.app-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Weather Guide */
.weather-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.weather-category {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.weather-category.safe {
    border: 2px solid var(--secondary-color);
}

.weather-category.caution {
    border: 2px solid var(--accent-color);
}

.weather-category.danger {
    border: 2px solid var(--accent-color);
}

.weather-category h3 {
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    color: var(--light-color);
}

.weather-category.safe h3 {
    background: var(--secondary-color);
}

.weather-category.caution h3 {
    background: var(--accent-color);
    color: var(--dark-color);
}

.weather-category.danger h3 {
    background: var(--accent-color);
}

.weather-conditions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.condition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.condition-item:last-child {
    border-bottom: none;
}

.condition-label {
    color: var(--gray-color);
    font-weight: 500;
}

.condition-value {
    font-weight: 600;
    color: var(--primary-color);
}

.weather-note {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray-color);
}

/* Weather Resources */
.weather-resources {
    margin-top: 3rem;
}

.weather-resources h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.resource-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--dark-color);
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--dark-color);
}

.resource-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Logo Link */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    color: inherit;
}

/* Hero Image */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 2rem;
    }

    .about-grid,
    .contact-grid,
    .content-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .newsletter-form,
    .popup-form {
        flex-direction: column;
    }

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

    .nav-pills {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .nav-pill {
        white-space: nowrap;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .brands-showcase {
        grid-template-columns: 1fr;
    }

    .equipment-card,
    .equipment-card.tip-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .centers-grid > .center-card:last-child:nth-child(3n + 1),
    .centers-grid > .center-card:last-child:nth-child(4) {
        grid-column: auto;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .destination-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .equipment-content h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .level-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .price-item {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

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

    .page-header h1 {
        font-size: 2rem;
    }

    .brands-grid,
    .locations-grid,
    .community-grid,
    .overview-grid,
    .quick-links-grid,
    .advantages-grid,
    .tips-grid,
    .equipment-grid,
    .rules-grid,
    .emergency-grid,
    .weather-guide,
    .centers-grid {
        grid-template-columns: 1fr;
    }
    
    .centers-grid > .center-card:last-child:nth-child(3n + 1),
    .centers-grid > .center-card:last-child:nth-child(4) {
        grid-column: auto;
    }

    .equipment-card,
    .equipment-card.tip-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .popup-content {
        margin: 20% auto;
        padding: 1.5rem;
    }

    .table-wrapper {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td,
    .comparison-table-detailed th,
    .comparison-table-detailed td {
        padding: 0.5rem;
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }

    .card-specs {
        grid-template-columns: 1fr;
    }

    .equipment-specs,
    .location-details {
        grid-template-columns: 1fr;
    }
}

/* Community Page Styles */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 500;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.event-card.featured {
    border: 2px solid var(--secondary-color);
}

.event-date {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1rem;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-location,
.event-time {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-content p {
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.events-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.events-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Calendar */
.calendar-wrapper {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.calendar-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-header h3 {
    color: var(--light-color);
    margin: 0;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.calendar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border-color);
}

.calendar-day {
    background: var(--light-color);
    padding: 1rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day.header {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--gray-color);
    cursor: default;
}

.calendar-day:not(.header):hover {
    background: var(--light-gray);
}

.calendar-day.event {
    background: var(--secondary-color);
    color: var(--light-color);
    font-weight: 600;
}

.calendar-day.event:hover {
    background: var(--primary-color);
}

/* Forum Categories */
.forum-categories {
    display: grid;
    gap: 2rem;
}

.forum-category {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-header h3 {
    color: var(--light-color);
    margin: 0;
}

.category-stats {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.9rem;
}

.recent-topics {
    padding: 1.5rem;
}

.topic-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-title {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.topic-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.topic-author {
    font-weight: 500;
}

.forum-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.forum-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-categories {
    display: grid;
    gap: 4rem;
}

.partner-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.partners-grid {
    display: grid;
    gap: 2rem;
}

.partners-grid.main {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.partners-grid.supporting,
.partners-grid.accommodation {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.partner-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.partner-card.premium {
    border: 2px solid var(--primary-color);
}

.partner-logo {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
}

.partner-logo h4 {
    color: var(--light-color);
    margin: 0;
}

.partner-info {
    padding: 1.5rem;
}

.partner-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.benefit-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.partnership-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.partnership-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}

/* Association Info */
.association-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.association-details {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--dark-color);
}

.detail-item span {
    color: var(--gray-color);
}

.mission-statement {
    margin-top: 2rem;
}

.mission-statement h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-statement ul {
    list-style: none;
    padding-left: 0;
}

.mission-statement li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mission-statement li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Membership Types */
.membership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.membership-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.membership-card.premium {
    border: 2px solid var(--primary-color);
}

.membership-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.membership-card.premium .membership-header {
    background: var(--primary-color);
}

.membership-header h3 {
    color: var(--light-color);
    margin: 0;
}

.membership-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.membership-content {
    padding: 1.5rem;
}

.membership-benefits,
.membership-requirements {
    margin-bottom: 2rem;
}

.membership-benefits h4,
.membership-requirements h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.membership-benefits ul,
.membership-requirements ul {
    list-style: none;
    padding-left: 0;
}

.membership-benefits li,
.membership-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.membership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.membership-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Volunteer Opportunities */
.volunteer-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.volunteer-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.volunteer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.volunteer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.volunteer-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.volunteer-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.skill-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Volunteer Benefits */
.volunteer-benefits {
    margin: 3rem 0;
}

.volunteer-benefits h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.volunteer-cta {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.volunteer-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Partnership Types */
.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partnership-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.partnership-header {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    text-align: center;
}

.partnership-header h3 {
    color: var(--light-color);
    margin: 0;
}

.partnership-content {
    padding: 1.5rem;
}

.partnership-benefits,
.partnership-requirements {
    margin-bottom: 2rem;
}

.partnership-benefits h4,
.partnership-requirements h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.partnership-benefits ul,
.partnership-requirements ul {
    list-style: none;
    padding-left: 0;
}

.partnership-benefits li,
.partnership-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.partnership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.partnership-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partnership Process */
.partnership-process {
    margin-top: 3rem;
}

.partnership-process h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.step-number {
    background: var(--primary-color);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-detailed {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--light-color);
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-detail-content p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.social-media h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links-detailed {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link-detailed {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-link-detailed:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.social-icon {
    font-size: 1.2rem;
}

/* Responsive adjustments for new styles */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .association-info {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid.main,
    .partners-grid.supporting,
    .partners-grid.accommodation {
        grid-template-columns: 1fr;
    }
    
    .membership-types,
    .partnership-types {
        grid-template-columns: 1fr;
    }
    
    .membership-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .calendar-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .topic-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
}