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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.logo:hover {
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0a0a0a;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    padding: 6rem 3rem 3rem;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    letter-spacing: -2px;
}

.hero-highlight {
    background: linear-gradient(120deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
    /* removes the gold gradient */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.35));
    border-radius: 20px;
    pointer-events: none;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #0a0a0a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

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

.service-card {
    padding: 3rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    transition: all 0.4s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: #fffbea;
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-section {
    background: white;
    border-top: 1px solid #e8e8e8;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.property-card {
    min-width: 100%;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.property-image {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    min-height: 400px;
}

.property-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-info h3 {
    font-size: 2rem;
    color: #0a0a0a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.property-details {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.property-type {
    display: inline-block;
    background: #fffbea;
    color: #d4af37;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e8e8e8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #0a0a0a;
    color: white;
    border-color: #0a0a0a;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.activity-section {
    max-width: 1100px;
}


.activity-content {
    max-width: 720px;
}


.activity-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}


.activity-content .cta-button {
    margin-top: 1rem;
}

.dot.active {
    background: #d4af37;
    width: 30px;
    border-radius: 6px;
}

.about-section {
    background: white;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.values-list li:last-child {
    border-bottom: none;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.2rem;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.contact-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.contact-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: white;
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.contact-form {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

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

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

.submit-button {
    padding: 1.2rem 3rem;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    justify-self: start;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.footer-contact p {
    color: #999;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #f4d03f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {

    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 400px;
    }

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

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: #0a0a0a;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
        font-size: 5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        gap: 1.5rem;
    }

    .submit-button {
        width: 100%;
        justify-self: stretch;
    }

    .property-card {
        grid-template-columns: 1fr;
    }

    .property-image {
        min-height: 200px;
        font-size: 4rem;
    }

    .property-info {
        padding: 1.5rem;
    }

    .property-info h3 {
        font-size: 1.4rem;
    }

    .property-location,
    .property-details {
        font-size: 0.95rem;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .values-list li {
        padding: 1.2rem 0;
        flex-direction: column;
        gap: 0.8rem;
    }

    .value-icon {
        font-size: 1.5rem;
    }

    .value-content h4 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.95rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1rem;
        padding: 0 0 2rem;
        text-align: center;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin: 0 auto;
        max-width: 400px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }

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

    .social-links {
        gap: 2rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}

/* Small phones (iPhone SE, older Android phones) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .carousel-container {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .property-info {
        padding: 1.25rem;
    }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {

    .nav-links a,
    .cta-button,
    .submit-button,
    .carousel-btn,
    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .dot.active {
        width: 36px;
    }
}

/* Error and Success Messages */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.form-error-message {
    display: none;
    color: #ef4444;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding: 1rem;
    background: #fee2e2;
    border-radius: 8px;
    border: 1px solid #fca5a5;
    animation: fadeIn 0.3s ease-out;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    background: linear-gradient(120deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
    font-weight: 800;
}

.success-text {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}