/*
Theme Name: UK Transport Pro Premium
Theme URI: https://centretravel.co.uk
Author: Centre Travel
Author URI: https://centretravel.co.uk
Description: Premium luxury transport theme with modern dark design, optimized for SEO and conversion
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uk-transport-pro
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
    --color-dark: #0F1114;
    --color-gold: #9A8A78;
    --color-light: #ffffff;
    --color-gray: #6B6B6B;
    --color-bg: #1a1a1a;
    --font-primary: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-light);
    font-weight: 400;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Modern Dark */
.main-header {
    background: rgba(15, 17, 20, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-light);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.brand-logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-light);
    text-transform: uppercase;
}

.brand-logo a {
    color: var(--color-light);
}

.brand-logo span {
    color: var(--color-gold);
}

.contact-info {
    display: flex;
    gap: 40px;
    font-size: 14px;
    font-weight: 500;
}

.contact-info a {
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.contact-info a:hover {
    color: var(--color-light);
}

/* Navigation - Premium Style */
.primary-nav {
    background: var(--color-dark);
    padding: 0;
    border-top: 1px solid rgba(154, 138, 120, 0.2);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
}

.nav-menu li a {
    display: block;
    color: var(--color-light);
    padding: 18px 35px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 60%;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-gold);
}

/* Hero Banner - Full Height Premium */
.hero-banner {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0F1114 0%, #1a1a1a 100%);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 110px;
}

.hero-banner::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 1440 320"><path fill="rgba(154,138,120,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,117.3C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(154, 138, 120, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-banner h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-banner h1 span {
    color: var(--color-gold);
    font-style: italic;
    font-family: var(--font-serif);
}

.hero-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-banner .subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* CTA Button - Premium Style */
.cta-button {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-light);
    padding: 18px 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    color: var(--color-dark);
    border-color: var(--color-light);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Services Section - Modern Grid */
.services-section {
    padding: 120px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--color-light);
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 17, 20, 0.7) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 40px 35px;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.learn-more {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* Content Area */
.content-area {
    padding: 100px 0;
}

.page-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

.page-content p {
    margin-bottom: 25px;
}

.page-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 60px 0 25px;
    letter-spacing: 0.5px;
}

.page-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 40px 0 20px;
    letter-spacing: 0.5px;
}

.page-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.page-content ul li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.page-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 18px;
}

.content-image {
    margin: 50px 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 138, 120, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.content-image img {
    transition: transform 0.6s ease;
}

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

/* Contact Form - Premium */
.contact-form {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 60px;
    margin-top: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    color: var(--color-light);
    margin-bottom: 15px;
    font-size: 38px;
}

.contact-form > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(154, 138, 120, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-light);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: var(--color-dark);
    color: var(--color-light);
}

/* Blog Grid - Modern Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.blog-card {
    background: var(--color-light);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    font-size: 13px;
    color: var(--color-gold);
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-dark);
    line-height: 1.4;
}

.blog-title a {
    color: var(--color-dark);
}

.blog-title a:hover {
    color: var(--color-gold);
}

.blog-excerpt {
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Footer - Premium Dark */
.main-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    margin-top: 120px;
    border-top: 3px solid var(--color-gold);
}

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

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(154, 138, 120, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pagination a,
.pagination span {
    padding: 12px 20px;
    background: var(--color-light);
    color: var(--color-dark);
    border: 1px solid #ddd;
    font-weight: 600;
}

.pagination a:hover,
.pagination .current {
    background: var(--color-gold);
    color: var(--color-light);
    border-color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-wrapper {
        padding: 0 30px;
    }

    .hero-banner h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .main-header {
        position: relative;
    }

    .hero-banner {
        margin-top: 0;
        height: 80vh;
        min-height: 600px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li a {
        padding: 15px 20px;
    }

    .hero-banner h1 {
        font-size: 42px;
    }

    .hero-banner p {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .contact-form {
        padding: 40px 30px;
    }

    .container-wrapper {
        padding: 0 20px;
    }

    .page-title {
        font-size: 36px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

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