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

:root {
    --primary: #0d80d7;
    --primary-dark: #0a6bb8;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --text: #333333;
    --text-light: #666;
    --secondary: #333333;
    --header-height: 115px;
}

body {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
header {
    background: rgba(200, 200, 200, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    display: block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: calc(100% - 40px);
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(13,128,215,0.05);
}

.mobile-menu:hover {
    background: rgba(13,128,215,0.1);
    color: var(--primary);
    transform: scale(1.1);
}

/* Notice Banner */
.notice {
    background: linear-gradient(135deg, var(--dark), var(--dark-gray));
    padding: 18px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.notice-content {
    color: white;
    font-size: 24px;
    font-family: "calvino", sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.notice-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,10,0.6), rgba(26,26,26,0.35)), 
                url('/img/slide1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    height: calc(var(--vh, 1vh) * 93 - var(--header-height));
    min-height: calc(var(--vh, 1vh) * 93 - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13,128,215,0.1), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 13px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    color: rgba(255,255,255,1);
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    font-size: 72px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.2s both;
    background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 13px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255,255,255,1);
    animation: fadeInUp 1s ease 0.4s both;
}

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

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

/* Locations Grid */
.locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 10;
}

.location-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover::before {
    background: linear-gradient(180deg, rgba(13,128,215,0.4), rgba(0,0,0,0.9));
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.8);
}

.location-card:hover img {
    transform: scale(1.15);
    filter: saturate(1.2);
}

.location-card h3 {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    font-size: 28px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    z-index: 2;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.location-card:hover h3 {
    transform: translateY(var(--description-offset, -50px));
    color: white;
}

.location-card .description {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: white;
    font-size: 14px;
    font-weight: 300;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: calc(100% - 80px);
    line-height: 1.5;
}

.location-card:hover .description {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--dark);
    color: white;
    padding: 80px 60px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 40px;
    line-height: 1.5em;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

.about-content strong {
    font-weight: 700;
    color: white;
}

span.about-line {
    display: block;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.learn-more:hover::before {
    left: 0;
}

.learn-more:hover {
    color: var(--dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    color: white;
    padding: 80px 60px;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Stats Grid */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 0;
}

.stat-item {
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #3da0e8);
    border-radius: 10px;
}

.stat-number {
    font-size: 52px;
    color: white;
    margin-bottom: 15px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--primary), #3da0e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 100px 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    --services-line-width: 0%;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    width: var(--services-line-width);
    transition: width 0.8s ease-out;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
    position: relative;
    flex: 1;
    max-width: 380px;
    backdrop-filter: blur(10px);
}

.service-card[data-number="02"] {
    margin-top: 80px;
}

.service-card::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    color: white;
}

.service-card p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Transactions Section */
.transactions {
    background: #0a0a0a;
    padding: 80px 60px;
}

.transactions h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
}

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

.transaction-card {
    background: #ffffff29;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.transaction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.transaction-info {
    padding: 30px;
}

.transaction-info h3 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.2em;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

/* Properties Section */
.properties {
    padding: 80px 60px;
    background: var(--light-gray);
    background-image: url('/img/bg-121.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

.properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(192 206 219 / 55%);
    z-index: 0;
}

.properties .container {
    position: relative;
    z-index: 1;
}

.properties h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--dark);
}

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

.property-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
    z-index: 1;
    transition: all 0.5s ease;
}

.property-card:hover::before {
    background: linear-gradient(180deg, rgba(13,128,215,0.3), rgba(0,0,0,0.8));
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover img {
    transform: scale(1.15);
}

.property-card .property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.property-card:hover .property-info {
    opacity: 1;
    transform: translateY(0);
}

.property-card h3 {
    color: white;
    font-size: 18px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.property-card .property-description {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.5;
}

.property-card .property-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.property-card .property-detail-item {
    display: flex;
    flex-direction: column;
}

.property-card .property-detail-label {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1;
}

.property-card .property-detail-value {
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
}

.view-all {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(13,128,215,0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13,128,215,0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-gray));
    color: white;
    padding: 80px 60px 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,128,215,0.1), transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    align-items: start;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section:last-child {
    text-align: center;
}

.footer-section:last-child h3::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-section:last-child .social-links {
    justify-content: center;
}

.footer-logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.footer-section .footer-logo + p {
    color: rgb(255 255 255);
    line-height: 1.3;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(13,128,215,0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-accordion-toggle {
    display: none;
}

.footer-section p strong {
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.footer-section a:hover::before {
    width: 10px;
}

.footer-section p a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 0 !important;
}

.footer-section p a::before {
    display: none !important;
}

.footer-section p a:hover {
    color: var(--primary);
    padding-left: 0 !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    color: white !important;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding-left: 0 !important;
}

.social-links a::before {
    display: none !important;
}

.social-links a:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(13,128,215,0.4);
    padding-left: 0 !important;
}

.social-links a:hover i {
    color: white !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    text-align: left;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.powered-by:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.powered-by-text {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.powered-by-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.powered-by:hover .powered-by-logo {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(13,128,215,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13,128,215,0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top i {
    color: white;
}

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

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

    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .notice-content {
        font-size: 16px;
    }

    .mobile-menu {
        display: block;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }

    .footer-accordion-toggle {
        display: inline-block;
        margin-left: 10px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .footer-section.accordion-active .footer-accordion-toggle {
        transform: rotate(180deg);
    }

    .footer-section.accordion-section h3 {
        cursor: pointer;
        user-select: none;
        margin-bottom: 0;
    }

    .footer-section.accordion-section ul,
    .footer-section.accordion-section > p,
    .footer-section.accordion-section .social-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin 0.3s ease;
        margin: 0;
    }

    .footer-section.accordion-section.accordion-active ul,
    .footer-section.accordion-section.accordion-active > p,
    .footer-section.accordion-section.accordion-active .social-links {
        max-height: 1000px;
        margin-top: 20px;
    }

    .footer-section.accordion-section.accordion-active {
        padding-bottom: 40px;
    }

    .hero {
        padding: 80px 30px;
        background-attachment: scroll;
    }

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

    .hero h2 {
        font-size: 11px;
    }

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

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

    .about h2,
    .services h2,
    .transactions h2,
    .properties h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .about,
    .services,
    .transactions,
    .properties,
    .stats-section {
        padding: 50px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

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

    .footer-section h3 {
        text-align: center;
    }

    .footer-section h3::after {
        display: none;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }

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

    .footer-section .footer-logo + p {
        text-align: center;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
    }

    .powered-by {
        justify-content: center;
    }

    nav ul {
        display: flex;
        position: fixed;
        top: var(--header-height);
        right: -110%;
        width: 100vw;
        height: calc(var(--vh, 1vh) * 93 - var(--header-height));
        background: var(--primary);
        flex-direction: column;
        padding: 0;
        margin: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
        gap: 0;
        z-index: 999;
        list-style: none;
        opacity: 0;
    }

    nav ul.active {
        right: 0;
        opacity: 1;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav ul li {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
        font-size: 20px;
        color: white;
        text-decoration: none;
        transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
        opacity: 0;
    }

    nav ul.active a {
        opacity: 1;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
    }

    nav a:hover,
    nav a.active {
        color: white;
        background: rgba(255,255,255,0.1);
    }

    nav a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .locations {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }

    .hero {
        padding: 100px 20px;
    }

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

    .location-card h3 {
        font-size: 24px;
    }

    .logo img {
        height: 60px;
    }

    nav a {
        padding: 8px 12px;
        font-size: 20px;
    }

    .container {
        padding: 0 30px;
    }

    .contact-section .container {
        padding: 0;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

/* ========== PAGE-SPECIFIC STYLES ========== */

/* About Page Styles */
.about-hero {
    position: relative;
    background: var(--dark);
    color: white;
    padding: 100px 60px;
    overflow: hidden;
}

.about-hero::before {
    display: none;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 72px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 60px;
}

.about-hero-about {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
}

.about-hero-about p {
    font-size: 24px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 0;
}

.about-hero-about .about-fill-char {
    display: inline;
    opacity: 0.3;
}

.about-video-section {
    width: 100%;
    background: var(--dark);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.about-video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.about-video-container video {
    width: 100%;
    height: 50vh;
    max-height: 400px;
    display: block;
    object-fit: cover;
}

/* Portfolio Page Styles */
.portfolio-hero {
    position: relative;
    background: var(--dark);
    color: white;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    display: none;
}

.portfolio-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-hero h1 {
    font-size: 72px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    position: relative;
    z-index: 2;
}

.portfolio-about {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-about p {
    font-size: 24px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 0;
}

.portfolio-about .about-fill-char {
    display: inline;
    opacity: 0.3;
}

.portfolio-section {
    padding: 50px 60px;
    background: var(--dark);
}

#portfolioLoading {
    text-align: center;
    padding: 100px 60px;
    background: var(--dark);
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    text-align: center;
    width: 100%;
}

.loading-dots {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    will-change: transform, opacity;
}

.portfolio-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
    padding: 25px 20px;
    z-index: 2;
}

.portfolio-item-address {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.portfolio-item-city {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.portfolio-item-size {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pagination a:hover {
    color: var(--primary);
}

.pagination .page-number {
    cursor: pointer;
}

.pagination .page-number.active {
    color: var(--primary);
    font-weight: 700;
}

/* Index Page Specific Styles */
.hero-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    pointer-events: none;
    z-index: 10;
}

.hero-box-piece {
    background: var(--dark);
    opacity: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-content p,
.about h2 {
    word-spacing: normal;
}

.about-content p .typewriter-char:not(:last-child) {
    word-break: normal;
}

.about-fill-char {
    display: inline;
    opacity: 0.3;
}

.typewriter-char {
    position: relative;
    display: inline;
}

.typewriter-char.glow-active {
    text-shadow: 
        0 0 20px rgba(13, 128, 215, 1),
        0 0 30px rgba(13, 128, 215, 1),
        0 0 40px rgba(13, 128, 215, 0.9),
        0 0 50px rgba(13, 128, 215, 0.8),
        0 0 60px rgba(13, 128, 215, 0.6);
    color: rgba(255, 255, 255, 1);
    animation: char-glow-shine 0.4s ease-out forwards;
}

@keyframes char-glow-shine {
    0% {
        text-shadow: 
            0 0 25px rgba(13, 128, 215, 1),
            0 0 35px rgba(13, 128, 215, 1),
            0 0 45px rgba(13, 128, 215, 1),
            0 0 55px rgba(13, 128, 215, 0.9),
            0 0 65px rgba(13, 128, 215, 0.7);
        color: rgba(255, 255, 255, 1);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(13, 128, 215, 1),
            0 0 30px rgba(13, 128, 215, 0.9),
            0 0 40px rgba(13, 128, 215, 0.7),
            0 0 50px rgba(13, 128, 215, 0.5);
        color: rgba(255, 255, 255, 0.95);
    }
    100% {
        text-shadow: 
            0 0 5px rgba(13, 128, 215, 0.4),
            0 0 10px rgba(13, 128, 215, 0.3),
            0 0 15px rgba(13, 128, 215, 0.2);
        color: rgba(255, 255, 255, 0.85);
    }
}

.learn-more {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.stats-section {
    --line-width: 0%;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    width: var(--line-width);
    transition: width 0.8s ease-out;
}

.stats {
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 0;
    align-items: flex-start;
    justify-content: center;
}

.stats::before {
    display: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding-top: 0;
    flex: 1;
    max-width: 500px;
}

.stat-item::before {
    display: none;
}

.stat-number {
    font-size: 120px;
    color: white;
    margin-bottom: 20px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
}

.stat-label {
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.3;
}

.stat-label .about-fill-char {
    display: inline;
    opacity: 0.3;
}


.service-connector {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.service-connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.service-connector path {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    stroke-linecap: round;
}

.about-content p {
    margin-bottom: 40px;
    line-height: 1.4em;
    font-size: 24px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Prevent swipe gestures - common for about and portfolio */
html {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

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

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 30px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .about-hero-about p {
        font-size: 20px;
    }

    .about-video-section {
        padding: 0;
    }

            nav ul {
                touch-action: pan-y;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: none;
                pointer-events: none;
                visibility: hidden;
                opacity: 0;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, visibility 0s 0.3s;
            }

            nav ul.active {
                pointer-events: auto;
                visibility: visible;
                opacity: 1;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
            }

            nav ul a {
                transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
                opacity: 0;
            }

            nav ul.active a {
                opacity: 1;
                transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
            }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero-about p {
        font-size: 18px;
    }
}

/* Responsive - Portfolio Page */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-hero h1 {
        font-size: 72px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .portfolio-hero {
        padding: 40px 30px 0;
        background-attachment: scroll;
    }

    .portfolio-hero h1 {
        font-size: 48px;
    }

    .portfolio-about p {
        font-size: 20px;
    }

    .portfolio-section {
        padding: 50px 0 1px;
    }

    .portfolio-item {
        height: 250px;
    }

    .pagination {
        gap: 5px;
        margin-top: 30px;
    }

    .pagination a,
    .pagination span {
        font-size: 13px;
        padding: 6px 10px;
        letter-spacing: 0.5px;
    }

            nav ul {
                touch-action: pan-y;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior-x: none;
                pointer-events: none;
                visibility: hidden;
                opacity: 0;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, visibility 0s 0.3s;
            }

            nav ul.active {
                pointer-events: auto;
                visibility: visible;
                opacity: 1;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
            }

            nav ul a {
                transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
                opacity: 0;
            }

            nav ul.active a {
                opacity: 1;
                transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, color 0.3s ease;
            }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-hero h1 {
        font-size: 36px;
    }

    .portfolio-item-address {
        font-size: 12px;
    }

    .pagination {
        gap: 3px;
        margin-top: 30px;
    }

    .pagination a,
    .pagination span {
        font-size: 11px;
        padding: 5px 8px;
        letter-spacing: 0.3px;
    }

    .pagination .page-link {
        font-size: 10px;
        padding: 5px 6px;
    }
}

/* Index Page Responsive Additions */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 60px;
        padding-left: 0;
    }

    .stat-item {
        width: 100%;
        max-width: 100%;
    }

    .stat-number {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .services-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-connector {
        display: none;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card[data-number="02"] {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .stats {
        padding-left: 0;
        gap: 50px;
    }

            .stat-number {
                font-size: 60px;
                letter-spacing: -2px;
            }
        }

/* ========== CONTACT PAGE STYLES ========== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: var(--dark);
    color: white;
    padding: 100px 60px;
    overflow: hidden;
}

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

.contact-hero h1 {
    font-size: 72px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.contact-about {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-about p {
    font-size: 24px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 0;
}

.contact-about .about-fill-char {
    display: inline;
    opacity: 0.3;
}

/* Contact Section */
.contact-section {
    padding: 100px 60px;
    background: var(--dark);
    position: relative;
}

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

/* Contact Information */
.contact-info {
    position: relative;
}

.contact-info h2 {
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 50px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item:hover::before {
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 128, 215, 0.1);
    border: 2px solid var(--primary);
    border-radius: 0;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.contact-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-item-content a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-item-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--primary) !important;
}

.contact-item-content a:hover::after {
    width: 100%;
}

.social-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.social-section .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: white;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-section .social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 128, 215, 0.4);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    padding: 20px 0;
}

.contact-form-wrapper h2 {
    font-size: 48px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #3da0e8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

.form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-group label {
    display: flex;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    align-items: center;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    transform: translateY(0);
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: transparent;
    color: white;
    padding-left: 5px;
    background: rgba(255, 255, 255, 0.02);
}

.form-group input:not(:placeholder-shown):not(:focus),
.form-group textarea:not(:placeholder-shown):not(:focus),
.form-group select:not([value=""]):not(:focus) {
    padding-left: 5px;
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    padding-top: 18px;
}

.form-group textarea ~ .form-line {
    bottom: 0;
    height: 3px;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    z-index: 10;
}

.custom-select-trigger {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
}

.custom-select-trigger:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.custom-select-wrapper.open .custom-select-trigger,
.custom-select-wrapper:focus-within .custom-select-trigger {
    border-bottom-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}

.custom-select-value {
    flex: 1;
    text-align: left;
    transition: color 0.3s ease;
}

.custom-select-wrapper.open .custom-select-value,
.custom-select-wrapper:focus-within .custom-select-value {
    color: white;
}

.custom-select-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-arrow,
.custom-select-wrapper:focus-within .custom-select-arrow {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg);
    box-shadow: 0 4px 12px rgba(13, 128, 215, 0.3);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.custom-select-wrapper.open .custom-select-options {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.custom-select-option {
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    list-style: none;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(13, 128, 215, 0.15);
    color: white;
    padding-left: 25px;
}

.custom-select-option.selected {
    background: rgba(13, 128, 215, 0.2);
    color: var(--primary);
    font-weight: 600;
}

.custom-select-option.selected {
    padding-left: 45px;
}

.custom-select-option.selected::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

.custom-select-option:focus {
    outline: none;
    background: rgba(13, 128, 215, 0.2);
    color: white;
}

.custom-select-wrapper.open .form-line {
    width: 100%;
}


.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #3da0e8);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(13, 128, 215, 0.5);
}

.form-group:not(.error) input:focus ~ .form-line,
.form-group:not(.error) textarea:focus ~ .form-line,
.form-group:not(.error) select:focus ~ .form-line {
    width: 100%;
}

.form-group.error input ~ .form-line,
.form-group.error textarea ~ .form-line,
.form-group.error .custom-select-wrapper .form-line,
.form-group.error input:focus ~ .form-line,
.form-group.error textarea:focus ~ .form-line {
    display: none;
}

.checkbox-group {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 0 !important;
    padding: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.checkbox-text {
    flex: 1;
    padding: 0;
    margin: 0;
    display: inline-block;
    line-height: 1.5;
    white-space: normal;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.submit-btn {
    margin-top: 30px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(13, 128, 215, 0.4);
    width: 100%;
    border: 2px solid transparent;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(13, 128, 215, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover span,
.submit-btn:hover i {
    color: var(--dark);
}

.submit-btn:active {
    transform: translateY(-1px);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    opacity: 1;
    visibility: visible;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
    opacity: 1;
    visibility: visible;
}

.error-message {
    display: block;
    color: #f44336;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 400;
    line-height: 1.4;
}

.error-message.show {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error .custom-select-trigger {
    border-bottom-color: #f44336 !important;
}

.form-group.error label {
    color: #f44336;
}

/* Responsive - Contact Page */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-about p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 20px 30px;
    }

    .contact-hero h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .contact-about p {
        font-size: 16px;
    }

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

    .contact-wrapper {
        gap: 30px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .contact-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        padding: 18px;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .contact-item-content {
        width: 100%;
        text-align: center;
    }

    .contact-item-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-item-content p {
        font-size: 14px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .contact-form {
        gap: 25px;
        padding: 30px 20px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .custom-select-trigger {
        padding: 15px 0;
        font-size: 15px;
    }

    .checkbox-group {
        margin-top: 10px;
        padding: 15px;
    }

    .submit-btn {
        margin-top: 20px;
        padding: 16px 30px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 15px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-about p {
        font-size: 14px;
    }

    .contact-section {
        padding: 30px 15px;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact-intro {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .contact-details {
        margin-bottom: 25px;
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
        gap: 12px;
    }

    .contact-item-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-item-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .contact-form {
        gap: 20px;
        padding: 25px 15px;
    }

    .form-group label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .custom-select-trigger {
        padding: 12px 0;
        font-size: 14px;
    }

    .checkbox-group {
        margin-top: 8px;
        padding: 12px;
    }

    .checkbox-label {
        font-size: 12px;
        gap: 10px;
        margin-bottom: 0 !important;
    }

    .checkmark {
        width: 20px;
        height: 20px;
        min-width: 20px;
        max-width: 20px;
    }

    .submit-btn {
        margin-top: 15px;
        padding: 14px 25px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}
