/* Google Fonts - Same as original */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Montserrat+Alternates:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --white: #ffffff;
    --off-white: #f9f9f9;
    --cream: #faf9f7;
    --black: #000000;
    --dark-bg: #0d0d0d;
    --text-dark: #333333;
    --text-gray: #555555;
    --text-light: #888888;
    --orange: #e8a838;
    --font-heading: 'Cormorant SC', serif;
    --font-body: 'Montserrat Alternates', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link:hover {
    opacity: 0.8;
}

.listen-btn {
    background: var(--orange);
    color: var(--white);
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listen-btn:hover {
    background: #d49730;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    letter-spacing: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/images/main.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero p {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 90vh;
}

.split-left {
    flex: 1;
    background: var(--off-white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-subtitle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.split-left h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.split-left p {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 2;
    max-width: 480px;
}

.split-right {
    flex: 1;
    background: url('../images/images/footer.jpg') center center / cover no-repeat;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Quote Banner */
.quote-banner {
    background: var(--dark-bg);
    padding: 50px;
    text-align: center;
}

.quote-banner h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
}

/* Services Section */
.services {
    padding: 80px 50px;
    background: var(--off-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-bg);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-content {
    padding: 30px 20px;
    text-align: center;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-content p {
    font-family: var(--font-text);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 50px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-left h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-logo img {
    height: 70px;
    width: auto;
}

.about-right p {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 20px;
}

/* Locations Section */
.locations {
    min-height: 70vh;
    background: url('../images/images/footer.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.locations-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.locations h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 35px;
}

.location-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 20px;
}

.location-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.locations-content p {
    font-family: var(--font-text);
    font-size: 13px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 3px;
}

.locations-content .city {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 3px;
    margin: 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.locations-content .reg-number {
    font-family: var(--font-text);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    padding: 20px 50px;
}

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

.footer-left p {
    font-family: var(--font-text);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-left a {
    color: var(--orange);
}

.footer-right p {
    font-family: var(--font-text);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-right a {
    color: var(--orange);
}

/* Contact Page */
.contact-hero {
    height: 45vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/images/main.jpg') center center / cover no-repeat;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-family: var(--font-text);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    padding: 70px 50px;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form h3,
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--black);
    font-family: var(--font-text);
    font-size: 13px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.submit-btn {
    padding: 12px 30px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-family: var(--font-text);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--white);
    color: var(--black);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Status Messages */
.form-status {
    padding: 12px 15px;
    font-family: var(--font-text);
    font-size: 13px;
    border-radius: 4px;
    display: none;
    margin-top: 5px;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.is-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-item p {
    font-family: var(--font-text);
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.info-item a {
    color: var(--orange);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 38px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 50vh;
    }

    .split-left {
        padding: 60px 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo img {
        height: 35px;
    }

    .header-right .nav-link,
    .listen-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .split-left {
        padding: 50px 25px;
    }

    .split-left h2 {
        font-size: 28px;
    }

    .services {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about {
        padding: 50px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-left h2 {
        font-size: 22px;
    }

    .quote-banner h3 {
        font-size: 18px;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 15px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .split-left h2 {
        font-size: 24px;
    }

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

    .contact-hero h1 {
        font-size: 28px;
    }

    .locations h2 {
        font-size: 26px;
    }
}
