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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #e8e8e8;
    background-color: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Italiana', serif;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #b8b8b8;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 51, 153, 0.3);
    transition: all 0.3s ease;
}

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

.regal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.regal-logo-img {
    height: 50px;
    width: auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-text h1 {
    font-size: 2rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Italiana', serif;
}

.nav-title {
    margin-top: 0.6rem;
    font-size: 1.65rem !important;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Italiana', serif;
    line-height: 0.6 !important;
}

.nav-subtitle {
    font-size: 0.6rem;
    color: #b8b8b8;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1 !important;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: bold;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-cta {
    background: #6633cc;
    color: #ffffff !important;
    padding: 0.6rem 1.8rem;
    border-radius: 6px;
    transition: all 0.3s ease !important;
    font-weight: 500;
}

.nav-cta:hover {
    background: #5729b0;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: 'Italiana', serif;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-location {
    margin-bottom: 3rem;
}

.location-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background: #6633cc;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #5729b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 51, 153, 0.4);
}

/* Hero Chevron Down */
.hero-chevron {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.chevron-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.chevron-down:hover {}

.chevron-down .chevron {
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #ffffff;
    border-right: 4px solid #ffffff;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    border-radius: 0%;
}



/* Profile Section */
.profile {
    padding: 8rem 0;
    background: #111111;
}

.profile-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
}

.profile-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.profile-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 3.2rem;
}

.profile-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.profile-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.credential {
    padding: 1.2rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #6633cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #e8e8e8;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #000000;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: #6633cc;
    color: #ffffff;
    border-radius: 10px;
    flex: 1;
    max-width: 300px;
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: 'Italiana', serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #111111;
}

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

.service-card {
    background: #1a1a1a;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
}

.service-card p {
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 1rem;
}

/* Experience Section */
.experience {
    padding: 8rem 0;
    background: #000000;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 2.5rem;
    background: #111111;
    border-radius: 10px;
    border-left: 4px solid #6633cc;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: #1a1a1a;
    transform: translateX(5px);
    border-left-color: #6633cc;
}

.timeline-year {
    font-size: 1.4rem;
    color: #ffffff;
    text-align: center;
    font-family: 'Italiana', serif;
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
}

.timeline-content p {
    color: #b8b8b8;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #111111;
    color: white;
}

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

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Italiana', serif;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b8b8b8;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: #e8e8e8;
}

.contact-label {
    font-weight: 600;
    min-width: 80px;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafafa;
    color: #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6633cc;
    background: white;
}

.submit-button {
    width: 100%;
    background: #6633cc;
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #5729b0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-text p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
}

.broker-info {
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.broker-info p {
    color: #b8b8b8;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-align: right;
}

.footer-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.compliance-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-info p {
    color: #b8b8b8;
    font-size: 0.8rem;
    margin-bottom: 0;
    text-align: right;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    .nav-brand {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .brand-text {
        display: none;
    }

    .logo {
        height: 50px;
    }

    .regal-logo {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        border-top: 1px solid rgba(102, 51, 153, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(102, 51, 153, 0.1);
    }

    .nav-cta {
        background: #6633cc;
        color: #ffffff !important;
        margin: 1rem 2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-size: 1rem;
        border-bottom: none;
    }

    .nav-cta:hover {
        background: #5729b0;
        transform: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        max-width: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1rem;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .broker-info p {
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
    }

    .compliance-info p {
        text-align: center;
    }

    .hero {
        background-attachment: scroll;
    }


    .chevron-down {
        width: 40px;
        height: 40px;
    }

    .chevron-down .chevron {
        width: 16px;
        height: 16px;
        border-bottom: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .slide {
        padding: 0;
    }

    .slide-image {
        height: 250px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
    }

    .slide-arrow-left {
        left: -20px;
    }

    .slide-arrow-right {
        right: -20px;
    }

    .chevron {
        width: 10px;
        height: 10px;
    }

    .price-inputs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .price-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-text .section-title {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .hero {
        min-height: 70vh;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.timeline-item,
.stat-item {
    animation: fadeInUp 0.8s ease forwards;
}

/* Points of Interest Slideshow */
.points-of-interest {
    padding: 8rem 0;
    background: rgba(102, 51, 153, 0.1);
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Slide Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slide-arrow-left {
    left: -25px;
}

.slide-arrow-right {
    right: -25px;
}

.chevron {
    width: 12px;
    height: 12px;
}

.chevron-left {
    transform: rotate(-135deg);
}

.chevron-right {
    transform: rotate(45deg);
}

.slide {
    display: none;
    padding: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.slide.active {
    display: block;
}

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

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

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

.slide-content {
    padding: 2rem;
}

.slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: bold;
}

.slide-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slide-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-btn.active,
.slide-btn:hover {
    background: #ffffff;
    transform: scale(1.2);
}

/* Price Range Inputs */
.price-range {
    margin-bottom: 1.8rem;
}

.price-range label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-inputs input {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fafafa;
    color: #000000;
}

.price-inputs input:focus {
    outline: none;
    border-color: #6633cc;
    background: white;
}

.price-separator {
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

/* Thank You Page */
.thank-you-section {
    padding: 12rem 0 8rem;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.thank-you-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.thank-you-item {
    background: #111111;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #6633cc;
}

.thank-you-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Italiana', serif;
}

.thank-you-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #6633cc;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #6633cc;
}

.secondary-button:hover {
    background: #6633cc;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile styles for thank you page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .thank-you-details {
        grid-template-columns: 1fr;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8e8e8;
}