/* ===== COMPLETE £1 CLUB STYLES - MATCHES ACTUAL HTML ===== */

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --light-color: #f8f9ff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: #ffffff;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--dark-color);
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

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

.account-actions {
    display: flex;
    gap: 15px;
}

.btn-cart-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cart-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Navigation */
.main-nav {
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transcom-logo {
    height: 45px;
}

.pound-club-logo {
    height: 50px;
    margin-left: 15px;
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo h1 span {
    font-weight: 300;
}

.mobile-menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Hero */
.hero {
    padding: 100px 0 120px;
    background: #1e3a8a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('BanneOverlay.png');
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

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

.trust-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-title .highlight {
    display: block;
    font-weight: 600;
    color: #ffd700;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 19px);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.vat-disclaimer {
    font-size: 14px;
    color: #ffd700;
    margin-bottom: 30px;
}

.hero-cta {
    display: none;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
}

.indicator-icon {
    width: 30px;
    height: 30px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.indicator-text strong {
    display: block;
    font-size: 20px;
    color: #ffffff;
}

.indicator-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #f8f9ff;
}

.btn-secondary:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Credibility */
.credibility-section {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.credibility-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.credibility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.credibility-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.credibility-item p {
    color: #4a5568;
}

.credibility-statement {
    margin-top: 50px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e9ecff 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
    display: flex;
    gap: 30px;
    align-items: center;
    border-left: 5px solid var(--primary-color);
}

.statement-icon {
    font-size: 60px;
}

.statement-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Services */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
    gap: 20px;
}

.section-header-content > div:first-child {
    text-align: center;
    flex: 1;
}

.section-header h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 10px;
    text-align: center;
}

.view-toggle {
    display: flex;
    gap: 10px;
    background: #f8f9ff;
    padding: 5px;
    border-radius: 12px;
}

.view-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
}

.view-btn.active {
    background: var(--gradient-primary);
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 40px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-icon {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
}

.info-icon:hover {
    opacity: 1;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #10b981;
    font-weight: bold;
}

.service-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 16px;
    color: #718096;
}

.btn-service {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    filter: brightness(1.1);
}

.btn-service:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    filter: brightness(0.9);
}

/* List View */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-list .service-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 25px;
    align-items: center;
    text-align: left;
    padding: 25px 30px;
}

.services-list .service-icon-wrapper {
    margin: 0;
}

.services-list h3 {
    justify-content: flex-start;
}

.services-list .service-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.services-list .service-features li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-right: 15px;
    border-right: 1px solid #e0e0e0;
}

.services-list .service-features li:last-child {
    border-right: none;
}

.services-list .btn-service {
    width: auto;
    padding: 12px 25px;
}

/* Freebies */
.freebies-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.freebies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.freebie-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
}

.freebie-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Cart */
.shopping-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
}

.shopping-cart.open {
    pointer-events: all;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.shopping-cart.open .cart-overlay {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.shopping-cart.open .cart-panel {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 2px solid #e2e8f0;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid #e2e8f0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-checkout:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.transcom-footer-logo {
    height: 35px;
}

.footer-logo h3 {
    font-size: 20px;
}

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

.vat-notice {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cart button text visibility */
.continue-text-short {
    display: none;
}

.continue-text-full {
    display: inline;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 10px;
    }
    
    .top-bar .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 8px;
        font-size: 10px;
    }
    
    .contact-info a:nth-child(2) {
        display: none;
    }
    
    .availability {
        display: none;
    }
    
    .btn-cart-header {
        padding: 8px 10px;
        font-size: 18px;
        border-radius: 8px;
        background: #667eea !important;
        min-width: 45px;
        height: 45px;
    }
    
    .cart-text {
        display: none;
    }
    
    .btn-cart-header .cart-icon {
        filter: brightness(0) saturate(100%) invert(87%) sepia(76%) saturate(1739%) hue-rotate(350deg) brightness(103%) contrast(101%) !important;
        font-size: 22px;
        font-weight: bold;
    }
    
    #cart2Modal > div {
        padding: 10px !important;
        align-items: flex-start !important;
    }
    
    #cart2Modal > div > div {
        max-height: 95vh;
        overflow-y: auto;
    }
    
    #cart2Modal h2 {
        font-size: 20px !important;
    }
    
    #cart2Modal p {
        font-size: 13px !important;
        margin: 5px 0 0 0 !important;
    }
    
    #cart2Modal > div > div > div[style*="padding"] {
        padding: 12px 15px !important;
    }
    
    #cart2Modal textarea {
        min-height: 50px !important;
    }
    
    .continue-text-full {
        display: none;
    }
    
    .continue-text-short {
        display: inline;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .logo {
        gap: 8px;
    }
    
    .transcom-logo {
        height: 35px;
    }
    
    .pound-club-logo {
        height: 40px;
        margin-left: 10px;
    }
    
    .services-list .service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* Modals and Additional Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #718096;
}

.how-it-works {
    padding: 80px 0;
    background: #f8f9ff;
}

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

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card.featured {
    border-color: #ffd700;
    position: relative;
}

.btn-continue-shopping {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-section {
    padding: 15px 0;
}

.checkout-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.checkout-email-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
}

.checkout-note {
    font-size: 13px;
    color: #718096;
    margin-top: 8px;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}