/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Irish Colors */
    --irish-green: #008A4C;
    --dublin-blue: #1693D2;
    --granite-grey: #66635B;
    --warm-white: #FFFBF5;
    --accent-orange: #E67A00;
    
    /* Additional Colors */
    --dark-green: #006635;
    --light-green: #00A659;
    --dark-blue: #0D7AB8;
    --light-grey: #F5F4F0;
    --medium-grey: #8B8881;
    --text-dark: #2C2A27;
    --white: #FFFFFF;
    
    /* Fonts */
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Lora', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--irish-green);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--irish-green);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

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

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

.btn-primary-nav {
    background: var(--irish-green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    background: var(--dark-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--irish-green);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--irish-green) 0%, var(--dublin-blue) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 C45,10 40,15 40,20 L40,40 C40,45 35,50 30,50 C35,50 40,55 40,60 L40,80 C40,85 45,90 50,90 C55,90 60,85 60,80 L60,60 C60,55 65,50 70,50 C65,50 60,45 60,40 L60,20 C60,15 55,10 50,10 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 120px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 251, 245, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-accent);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--irish-green) 0%, var(--dublin-blue) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header-legal {
    background: var(--granite-grey);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    font-family: var(--font-accent);
    opacity: 0.95;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--granite-grey);
    margin-bottom: 3rem;
    font-family: var(--font-accent);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--irish-green);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--granite-grey);
    line-height: 1.7;
}

/* ===== DEVICES SECTION ===== */
.devices-preview {
    background: var(--light-grey);
}

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

.device-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.device-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.device-card:hover .device-image img {
    transform: scale(1.05);
}

.device-info {
    padding: 2rem;
}

.device-name {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.device-description {
    color: var(--granite-grey);
    margin-bottom: 1.5rem;
}

/* ===== PLANS SECTION ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.plan-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.plan-name {
    font-size: 2rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.plan-data {
    font-size: 1.25rem;
    color: var(--dublin-blue);
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-features {
    text-align: left;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--granite-grey);
    border-bottom: 1px solid var(--light-grey);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: var(--light-grey);
}

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

.booking-text h2 {
    text-align: left;
}

.booking-benefits {
    margin-top: 2rem;
}

.booking-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--granite-grey);
}

.booking-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--irish-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.booking-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ===== FORMS ===== */
.booking-form h3,
.contact-form h3,
.visit-form h3 {
    color: var(--irish-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition-fast);
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--granite-grey);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--medium-grey);
    text-align: center;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--granite-grey);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-accept {
    background: var(--irish-green);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--dark-green);
}

.btn-decline {
    background: var(--light-grey);
    color: var(--granite-grey);
}

.btn-decline:hover {
    background: var(--granite-grey);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--granite-grey);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

/* ===== DEVICES PAGE ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--irish-green);
    color: var(--white);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--irish-green);
    transition: var(--transition-fast);
}

.category-card:hover .category-icon {
    color: var(--white);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.category-desc {
    font-size: 0.9rem;
    color: var(--granite-grey);
    margin-top: 0.5rem;
}

.category-card:hover .category-desc {
    color: rgba(255, 255, 255, 0.9);
}

.devices-grid-full {
    display: grid;
    gap: 3rem;
}

.device-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.device-card-full:hover {
    box-shadow: var(--shadow-lg);
}

.device-image-large {
    width: 100%;
    height: 400px;
}

.device-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.device-name-large {
    font-size: 2rem;
    color: var(--irish-green);
    margin-bottom: 1.5rem;
}

.device-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.875rem;
    color: var(--medium-grey);
}

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

.device-description-full {
    color: var(--granite-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.device-specs-short {
    color: var(--dublin-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== PLANS PAGE ===== */
.plans-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Family Plans Section */
.family-plans {
    background: var(--light-grey);
}

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

.family-text h3 {
    color: var(--irish-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.family-text p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.family-benefits {
    list-style: none;
    margin: 2rem 0;
}

.family-benefits li {
    padding: 0.75rem 0;
    color: var(--granite-grey);
    line-height: 1.7;
}

.family-benefits strong {
    color: var(--irish-green);
    font-weight: 600;
}

.family-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Add-ons Section */
.addons-section {
    background: var(--light-grey);
}

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

.addon-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.addon-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--dublin-blue);
}

.addon-icon svg {
    width: 100%;
    height: 100%;
}

.addon-name {
    font-size: 1.25rem;
    color: var(--irish-green);
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.125rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.addon-desc {
    color: var(--granite-grey);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Coverage Section */
.coverage-section {
    background: var(--light-grey);
}

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

.coverage-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.coverage-text h3 {
    color: var(--irish-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coverage-text p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.coverage-stats .stat-item {
    text-align: center;
}

.coverage-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--irish-green);
    margin-bottom: 0.5rem;
}

.coverage-stats .stat-label {
    font-size: 0.9rem;
    color: var(--granite-grey);
}

.coverage-features {
    list-style: none;
    margin-top: 1.5rem;
}

.coverage-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--granite-grey);
}

.coverage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--irish-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.plan-card-detailed {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.plan-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-plan {
    border: 3px solid var(--accent-orange);
    transform: scale(1.02);
}

.featured-plan:hover {
    transform: translateY(-8px) scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.plan-name-detailed {
    font-size: 1.75rem;
    color: var(--irish-green);
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dublin-blue);
}

.price-period {
    font-size: 1rem;
    color: var(--granite-grey);
}

.plan-data-detailed {
    text-align: center;
    font-size: 1.25rem;
    color: var(--irish-green);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-grey);
}

.plan-features-detailed {
    margin: 2rem 0;
}

.plan-features-detailed li {
    padding: 0.75rem 0;
    color: var(--granite-grey);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    color: var(--irish-green);
    font-weight: bold;
    flex-shrink: 0;
}

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

.prepaid-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.prepaid-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.prepaid-content {
    padding: 2rem;
}

.prepaid-name {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.prepaid-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.prepaid-features {
    margin: 1.5rem 0;
}

.prepaid-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--granite-grey);
}

.prepaid-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dublin-blue);
    font-size: 1.5rem;
    line-height: 1;
}

/* ===== ACCESSORIES PAGE ===== */
.accessories-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.acc-category {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.acc-category:hover {
    background: var(--dublin-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.acc-category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--dublin-blue);
    transition: var(--transition-fast);
}

.acc-category:hover .acc-category-icon {
    color: var(--white);
}

.acc-category-icon svg {
    width: 100%;
    height: 100%;
}

.acc-category h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

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

.accessory-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.accessory-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.accessory-card:hover .accessory-image img {
    transform: scale(1.05);
}

.accessory-info {
    padding: 2rem;
}

.accessory-name {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.accessory-desc {
    color: var(--granite-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.accessory-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--light-grey);
    color: var(--dublin-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Charging Solutions */
.charging-section {
    background: var(--light-grey);
}

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

.charging-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.charging-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.charging-content {
    padding: 2rem;
}

.charging-name {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.charging-desc {
    color: var(--granite-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.charging-features {
    list-style: none;
    margin: 1.5rem 0;
}

.charging-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--granite-grey);
}

.charging-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dublin-blue);
    font-size: 1.5rem;
    line-height: 1;
}

/* Screen Protection */
.screen-protection {
    background: var(--light-grey);
}

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

.protection-text h3 {
    color: var(--irish-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.protection-text p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.protection-types {
    margin: 2rem 0;
}

.protection-type {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.protection-type h4 {
    color: var(--dublin-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.protection-type p {
    color: var(--granite-grey);
    line-height: 1.7;
    margin: 0;
}

.protection-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Smart Accessories */
.smart-accessories {
    background: var(--light-grey);
}

/* Benefits Alternative */
.benefits-alt {
    background: var(--light-grey);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.benefit-card h3 {
    color: var(--irish-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--granite-grey);
    line-height: 1.7;
    margin: 0;
}

/* Audio Section */
.audio-section {
    background: var(--light-grey);
}

/* ===== ABOUT PAGE ===== */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.story-text h2 {
    text-align: left;
}

.story-paragraph {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--dublin-blue);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.value-desc {
    color: var(--granite-grey);
    line-height: 1.7;
}

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

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.member-name {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--dublin-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--granite-grey);
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose {
    background: var(--light-grey);
}

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

.choose-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.choose-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.choose-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--irish-green);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.point-content h3 {
    color: var(--irish-green);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--granite-grey);
    line-height: 1.7;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    background: var(--light-grey);
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.commitment-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.commitment-item h3 {
    color: var(--dublin-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: var(--granite-grey);
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--irish-green) 0%, var(--dublin-blue) 100%);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--dublin-blue);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-method-title {
    font-size: 1.5rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.contact-method-text {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--light-grey);
}

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

.form-intro h2 {
    text-align: left;
}

.form-intro p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--granite-grey);
}

.benefit-check {
    color: var(--irish-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Hours Section */
.hours-section {
    background: var(--light-grey);
}

/* Map Section */
.map-section {
    background: var(--white);
}

/* FAQ Contact */
.faq-contact {
    background: var(--light-grey);
}

/* Contact Methods */
.contact-methods {
    background: var(--white);
}

/* ===== VISIT PAGE ===== */
.why-visit {
    background: var(--white);
}

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

.visit-benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.visit-benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.visit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--irish-green);
}

.visit-icon svg {
    width: 100%;
    height: 100%;
}

.visit-benefit h3 {
    font-size: 1.25rem;
    color: var(--irish-green);
    margin-bottom: 0.75rem;
}

.visit-benefit p {
    color: var(--granite-grey);
    margin: 0;
    line-height: 1.7;
}

/* Visit Booking Section */
.visit-booking-section {
    background: var(--light-grey);
}

.visit-booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info h2 {
    text-align: left;
}

.visit-description {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.visit-details {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.visit-details h3 {
    color: var(--irish-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.visit-checklist {
    list-style: none;
    margin-top: 1rem;
}

.visit-checklist li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--granite-grey);
}

.visit-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--irish-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.visit-prepare {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.visit-prepare h3 {
    color: var(--dublin-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prepare-list {
    list-style: none;
    margin-top: 1rem;
}

.prepare-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--granite-grey);
}

.prepare-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dublin-blue);
    font-size: 1.5rem;
    line-height: 1;
}

.visit-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Store Gallery */
.store-gallery {
    background: var(--white);
}

/* Location Detailed */
.location-detailed {
    background: var(--light-grey);
}

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

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.location-title {
    color: var(--irish-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.location-text {
    color: var(--granite-grey);
    line-height: 1.8;
}

/* Alternative Contact */
.alternative-contact {
    background: var(--white);
}

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

.alt-contact-content h2 {
    color: var(--irish-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alt-contact-content p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.alt-option {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.alt-option h3 {
    color: var(--dublin-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.alt-option p {
    color: var(--granite-grey);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--light-grey);
}

/* ===== LEGAL PAGES ===== */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--irish-green);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    color: var(--dublin-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-legal {
    background: var(--light-grey);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--irish-green) 0%, var(--dublin-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.125rem;
    font-family: var(--font-accent);
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-section .btn-primary {
    background: var(--white);
    color: var(--irish-green);
}

.cta-section .btn-primary:hover {
    background: var(--warm-white);
}

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

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--dublin-blue);
}

/* ===== BENEFITS & STATS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--irish-green);
    margin-bottom: 0.75rem;
}

.benefit-text {
    color: var(--granite-grey);
    line-height: 1.7;
    margin: 0;
}

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

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--irish-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--granite-grey);
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    color: var(--irish-green);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--granite-grey);
    line-height: 1.8;
    margin: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.review-stars {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--irish-green);
    font-weight: 600;
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem;
    background: var(--white);
    color: var(--granite-grey);
    text-align: center;
    margin: 0;
}

/* ===== HOURS & MAP ===== */
.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hours-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.hours-table {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--irish-green);
}

.time {
    color: var(--granite-grey);
}

.hours-note {
    text-align: center;
    color: var(--medium-grey);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.map-info h3 {
    color: var(--irish-green);
    margin-bottom: 1rem;
}

.map-address {
    color: var(--granite-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.map-directions h4 {
    color: var(--dublin-blue);
    margin-bottom: 1rem;
}

.map-directions ul {
    list-style: none;
}

.map-directions li {
    padding: 0.5rem 0;
    color: var(--granite-grey);
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 138, 76, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay p {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .device-card-full {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .booking-content,
    .hours-content,
    .family-content,
    .coverage-content,
    .protection-content,
    .choose-content,
    .form-content,
    .visit-booking-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: var(--transition-normal);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--light-grey);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .devices-grid,
    .plans-grid,
    .accessories-grid,
    .values-grid,
    .team-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .device-image,
    .device-image-large,
    .prepaid-image,
    .accessory-image {
        height: 250px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .plan-badge,
    .featured-badge {
        font-size: 0.75rem;
        padding: 4px 35px;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .btn,
    .menu-toggle {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Animations for scroll */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: slideInUp 0.6s ease forwards;
}

/* Selection */
::selection {
    background: var(--irish-green);
    color: var(--white);
}

::-moz-selection {
    background: var(--irish-green);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--irish-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

