:root{--page-title-display:none;}/* Start custom CSS *//* Cool Club Styles - Paste into Elementor Custom CSS or Appearance > Customize > Additional CSS */

/* Google Font Import - Add this to your theme's header or use Elementor's Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

.cool-club-page {
    --lex-blue-dark: #0c2342;
    --lex-blue: #133865;
    --lex-blue-light: #1a4a7a;
    --lex-blue-accent: #2563a8;
    --lex-red: #c62828;
    --lex-gold: #d4a03e;
    --lex-gold-light: #e8b84a;
    --lex-gold-dark: #b8860b;
    --lex-green: #2E8B57;
    --lex-gray-dark: #2d3436;
    --lex-gray: #636e72;
    --lex-gray-light: #f8f9fa;
    --lex-white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(10, 61, 98, 0.1);
    --shadow-medium: 0 8px 30px rgba(10, 61, 98, 0.15);
    --shadow-strong: 0 12px 40px rgba(10, 61, 98, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    font-family: 'Open Sans', sans-serif;
    color: var(--lex-gray-dark);
    line-height: 1.6;
}

.cool-club-page * {
    box-sizing: border-box;
}

/* Override Elementor link defaults */
.cool-club-page a.cc-btn {
    text-decoration: none !important;
}

.cool-club-page a.cc-btn-primary,
.cool-club-page a.cc-btn-primary:hover,
.cool-club-page a.cc-btn-primary:focus,
.cool-club-page a.cc-btn-primary:active,
.cool-club-page a.cc-btn-primary:visited {
    color: #211511 !important;
}

.cool-club-page a.cc-btn-blue,
.cool-club-page a.cc-btn-blue:hover,
.cool-club-page a.cc-btn-blue:focus,
.cool-club-page a.cc-btn-blue:active,
.cool-club-page a.cc-btn-blue:visited {
    color: #ffffff !important;
}

.cool-club-page h1, 
.cool-club-page h2, 
.cool-club-page h3, 
.cool-club-page h4, 
.cool-club-page h5, 
.cool-club-page h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.cool-club-page p {
    margin: 0;
    padding: 0;
}

/* Hero Section */
.cc-hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, #0c2342 0%, #133865 50%, #1a4a7a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cc-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--lex-white);
    transform: skewY(-2deg);
}

.cc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cc-hero-text {
    color: var(--lex-white);
}

.cc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: ccFadeInDown 0.6s ease-out;
}

.cc-hero-badge svg {
    width: 20px;
    height: 20px;
}

.cc-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    animation: ccFadeInUp 0.6s ease-out 0.1s both;
    color: var(--lex-white);
}

.cc-hero h1 span {
    color: #e8b84a;
}

.cc-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    animation: ccFadeInUp 0.6s ease-out 0.2s both;
}

.cc-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 40px;
    animation: ccFadeInUp 0.6s ease-out 0.3s both;
}

.cc-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.cc-hero-feature svg {
    width: 24px;
    height: 24px;
    color: #2E8B57;
}

.cc-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: ccFadeInUp 0.6s ease-out 0.4s both;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cc-btn-primary {
    background: linear-gradient(180deg, #e8b84a 0%, #d4a03e 50%, #b8860b 100%) !important;
    color: #211511 !important;
    box-shadow: 0 4px 20px rgba(212, 160, 62, 0.4);
}

.cc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 160, 62, 0.5);
    background: linear-gradient(180deg, #f0c45a 0%, #e8b84a 50%, #c9972f 100%) !important;
    color: #211511 !important;
}

.cc-btn-primary:focus,
.cc-btn-primary:active,
.cc-btn-primary:visited {
    color: #211511 !important;
}

.cc-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--lex-white) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cc-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: var(--lex-white) !important;
}

.cc-btn-blue {
    background: #133865 !important;
    color: #ffffff !important;
}

.cc-btn-blue:hover {
    background: #0c2342 !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.cc-btn-blue:focus,
.cc-btn-blue:active,
.cc-btn-blue:visited {
    color: #ffffff !important;
}

.cc-btn svg {
    color: inherit !important;
    stroke: currentColor !important;
}

/* Pricing Card in Hero */
.cc-hero-card {
    background: var(--lex-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-strong);
    animation: ccFadeInRight 0.8s ease-out 0.3s both;
}

.cc-hero-card-header {
    text-align: center;
    margin-bottom: 32px;
}

.cc-hero-card-header h3 {
    color: var(--lex-blue-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cc-starting-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.cc-starting-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #133865;
}

.cc-starting-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #133865;
    line-height: 1;
}

.cc-starting-price .period {
    font-size: 1rem;
    color: var(--lex-gray);
}

.cc-pricing-tiers {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.cc-pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--lex-gray-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.cc-pricing-tier:hover {
    background: #e3f2fd;
    transform: translateX(4px);
}

.cc-pricing-tier .systems {
    font-weight: 600;
    color: var(--lex-gray-dark);
}

.cc-pricing-tier .price {
    font-weight: 700;
    color: #133865;
    font-size: 1.1rem;
}

.cc-hero-card .cc-btn {
    width: 100%;
    justify-content: center;
}

/* Benefits Section */
.cc-benefits {
    padding: 100px 24px;
    background: var(--lex-white);
}

.cc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cc-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--lex-blue-dark);
    margin-bottom: 16px;
}

.cc-section-header p {
    font-size: 1.15rem;
    color: var(--lex-gray);
    max-width: 600px;
    margin: 0 auto;
}

.cc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.cc-benefit-card {
    background: var(--lex-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(21, 101, 192, 0.08);
}

.cc-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: #2563a8;
}

.cc-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #133865 0%, #1a4a7a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cc-benefit-icon svg {
    width: 36px;
    height: 36px;
    color: var(--lex-white);
}

.cc-benefit-card h3 {
    font-size: 1.25rem;
    color: var(--lex-blue-dark);
    margin-bottom: 12px;
}

.cc-benefit-card p {
    color: var(--lex-gray);
    font-size: 0.95rem;
}

/* What's Included Section */
.cc-included {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--lex-gray-light) 0%, var(--lex-white) 100%);
}

.cc-included-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cc-included-intro h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--lex-blue-dark);
    margin-bottom: 20px;
}

.cc-included-intro > p {
    color: var(--lex-gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cc-included-highlights {
    display: grid;
    gap: 20px;
}

.cc-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cc-highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #133865;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--lex-white);
}

.cc-highlight-text h4 {
    font-size: 1.1rem;
    color: var(--lex-blue-dark);
    margin-bottom: 4px;
}

.cc-highlight-text p {
    font-size: 0.9rem;
    color: var(--lex-gray);
}

/* Maintenance Checklists */
.cc-checklists {
    display: grid;
    gap: 24px;
}

.cc-checklist-card {
    background: var(--lex-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.cc-checklist-header {
    background: linear-gradient(135deg, #0c2342 0%, #133865 100%);
    color: var(--lex-white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cc-checklist-header:hover {
    background: linear-gradient(135deg, #133865 0%, #1a4a7a 100%);
}

.cc-checklist-header h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--lex-white);
    margin: 0;
}

.cc-checklist-header svg {
    transition: transform 0.3s ease;
}

.cc-checklist-card.active .cc-checklist-header svg:last-child {
    transform: rotate(180deg);
}

.cc-checklist-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.cc-checklist-card.active .cc-checklist-content {
    max-height: 800px;
}

.cc-checklist-items {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.cc-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--lex-gray-dark);
}

.cc-checklist-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #2E8B57;
    margin-top: 2px;
}

/* Guarantees Section */
.cc-guarantees {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0c2342 0%, #133865 100%);
    position: relative;
    overflow: hidden;
}

.cc-guarantees::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--lex-white);
    transform: skewY(-2deg);
}

.cc-guarantees-content {
    position: relative;
    z-index: 2;
}

.cc-guarantees .cc-section-header h2 {
    color: var(--lex-white);
}

.cc-guarantees .cc-section-header p {
    color: rgba(255,255,255,0.8);
}

.cc-guarantees-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.cc-guarantee-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 16px);
    min-width: 250px;
    max-width: 350px;
}

.cc-guarantee-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.cc-guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #e8b84a 0%, #d4a03e 50%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cc-guarantee-icon svg {
    width: 30px;
    height: 30px;
    color: #211511;
}

.cc-guarantee-item h4 {
    color: var(--lex-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cc-guarantee-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* CTA Section */
.cc-cta-section {
    padding: 100px 24px;
    background: var(--lex-white);
}

.cc-cta-box {
    background: linear-gradient(135deg, var(--lex-gray-light) 0%, #e3f2fd 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(21, 101, 192, 0.1);
}

.cc-cta-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--lex-blue-dark);
    margin-bottom: 16px;
}

.cc-cta-box > p {
    color: var(--lex-gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cc-phone-number {
    margin-top: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lex-blue-dark);
}

.cc-phone-number a,
.cc-phone-number a:visited {
    color: var(--lex-blue-dark) !important;
    text-decoration: none !important;
}

.cc-phone-number a:hover {
    color: var(--lex-blue) !important;
}

/* Fine Print */
.cc-fine-print {
    padding: 40px 24px;
    background: var(--lex-gray-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cc-fine-print p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--lex-gray);
    text-align: center;
    line-height: 1.8;
}

/* Animations */
@keyframes ccFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ccFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ccFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .cc-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cc-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-hero-features {
        justify-content: center;
    }

    .cc-hero-cta {
        justify-content: center;
    }

    .cc-hero-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .cc-included-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cc-hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .cc-hero-content {
        padding: 40px 20px;
    }

    .cc-hero-card {
        padding: 28px 24px;
    }

    .cc-benefits, .cc-included, .cc-guarantees, .cc-cta-section {
        padding: 60px 20px;
    }

    .cc-cta-box {
        padding: 40px 24px;
    }

    .cc-checklist-items {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */