/* Clean, Apple-inspired stylesheet */
:root {
    --primary-color: #0B362D;
    --secondary-color: #B08E57;
    --dark-color: #02262E;
    --dark-page: #1a1a1a;
    --light-color: #FFFFFF;
    --contrast-color: #333333;
    --accent-color: #B08E57;
    --text-primary: #0B362D;
    --text-secondary: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --surface: #FFFFFF;
    --border: #E5E5E5;
    --border-light: #F5F5F5;
    --success: #30D158;
    --warning: #FF9F0A;
    --error: #FF453A;
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.15s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Global Floating Glass Elements */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(11, 54, 45, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: globalFloat1 35s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(176, 142, 87, 0.06) 0%, transparent 60%);
    border-radius: 60% 40% 50% 50%;
    filter: blur(15px);
    animation: globalFloat2 28s ease-in-out infinite reverse;
    z-index: -1;
    pointer-events: none;
}

@keyframes globalFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(-20px, -30px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(30px, -10px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translate(-10px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes globalFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 50% 50%;
    }

    33% {
        transform: translate(15px, -20px) rotate(120deg);
        border-radius: 40% 60% 30% 70%;
    }

    66% {
        transform: translate(-25px, 10px) rotate(240deg);
        border-radius: 70% 30% 60% 40%;
    }
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(11, 54, 45, 0.1);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.04),
                0 1px 0 0 rgba(255, 255, 255, 0.15),
                0 1px 2px 0 rgba(0, 0, 0, 0.06),
                0 8px 32px -4px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.4) 80%, 
        transparent 100%);
    pointer-events: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    transition: var(--transition-base);
}

.navbar.scrolled .container {
    padding: 12px 20px;
}

.nav-brand h2 {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-fast);
}

.nav-brand h2:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-regular);
    font-size: 17px;
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(176, 142, 87, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
                0 1px 2px 0 rgba(0, 0, 0, 0.04);
}

.nav-link:active {
    transform: scale(0.98);
    background: rgba(176, 142, 87, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.nav-toggle:hover {
    background: rgba(176, 142, 87, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle:hover span {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 0;
    background: var(--background);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-layout {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Static Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(11, 54, 45, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(176, 142, 87, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(11, 54, 45, 0.02) 0%, transparent 100%);
    z-index: 0;
}

/* Hero to Services Transition */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
            rgba(251, 251, 253, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 24px;
    font-weight: var(--font-weight-regular);
    line-height: 1.33;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 17px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg,
            rgba(11, 54, 45, 0.9) 0%,
            rgba(2, 38, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 8px 32px rgba(11, 54, 45, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg,
            rgba(11, 54, 45, 1) 0%,
            rgba(2, 38, 46, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(11, 54, 45, 0.4);
}

.btn-primary:disabled {
    background: rgba(102, 102, 102, 0.6);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    border: 1px solid rgba(102, 102, 102, 0.3);
    box-shadow: none;
    transform: none;
}

.btn-primary:disabled:hover {
    background: rgba(102, 102, 102, 0.6);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(176, 142, 87, 0.1);
    backdrop-filter: blur(10px);
    color: var(--secondary-color);
    border: 2px solid rgba(176, 142, 87, 0.3);
    box-shadow: 0 4px 16px rgba(176, 142, 87, 0.1);
}

.btn-secondary:hover {
    background: rgba(176, 142, 87, 0.15);
    backdrop-filter: blur(15px);
    color: var(--secondary-color);
    border: 2px solid rgba(176, 142, 87, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(176, 142, 87, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 21px;
    line-height: 1.38;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 0 100px 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 1) 20%,
            rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    padding-top: 140px;
}

/* Subtle Services Background */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%,
            rgba(11, 54, 45, 0.06) 0%,
            rgba(176, 142, 87, 0.04) 50%,
            transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(251, 251, 253, 0.5) 100%);
    z-index: 1;
}

/* Clean section transitions */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(176, 142, 87, 0.15);
    border-color: rgba(176, 142, 87, 0.3);
    background: rgba(255, 255, 255, 0.85);
}

.service-number {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--accent-color);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom,
            rgba(251, 251, 253, 1) 0%,
            rgba(251, 251, 253, 0.98) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

/* About Background - Static */
.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(176, 142, 87, 0.04) 0%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

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

.about h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.about p {
    font-size: 21px;
    line-height: 1.38;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

/* Contact Background - Static */
.contact::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -15%;
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse,
            rgba(11, 54, 45, 0.04) 0%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

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

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

.contact-item h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 17px;
    transition: var(--transition-fast);
    background: var(--surface);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(176, 142, 87, 0.1);
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 40px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: var(--font-weight-semibold);
    font-size: 17px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Legal Pages */
.legal-content {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.legal-content h2 {
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.highlight-box {
    background: var(--border-light);
    padding: 24px;
    margin: 32px 0;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent-color);
}

/* Accessibility */
.nav-link:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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

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

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(251, 251, 253, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        padding: 40px 0;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-description {
        font-size: 19px;
    }

    .section-header h2 {
        font-size: clamp(32px, 7vw, 40px);
    }

    .section-header p {
        font-size: 19px;
    }

    .services,
    .about,
    .contact {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

    .service-card {
        padding: 32px 24px;
    }

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

    .contact-form {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Clean Static Hero Layout */
.hero-layout::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(11, 54, 45, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-layout::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(176, 142, 87, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {

    body::before,
    body::after,
    .hero::before,
    .hero::after,
    .hero-layout::before,
    .hero-layout::after,
    .hero-content::before,
    .services::before,
    .services::after,
    .about::before,
    .about::after,
    .contact::before {
        animation: none !important;
        opacity: 0.3 !important;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hero-buttons,
    .contact-form,
    .nav-toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        display: block;
    }

    * {
        box-shadow: none !important;
    }

    body {
        background: white;
    }
}