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

/* Global Select Dropdown Arrow Styling */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

select::-ms-expand {
    display: none;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem)!important;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-heading {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.subheading {
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    font-size: 3rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}

h2 {
    font-size: clamp(4rem, 7vw, 6rem)!important;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #a8a8a8;
    font-size: 1.1rem;
}

/* Highlight Color */
.highlight {
    color: #595353;
    background: linear-gradient(135deg, #595353 0%, #7a7a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0);
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar.nav-hidden {
    transform: translateY(-100px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover area to show hidden navbar */
.nav-hover-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 999;
    background: transparent;
}

.nav-hover-area:hover + .navbar,
.navbar:hover {
    transform: translateY(0) !important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-links a.cta-button::after {
    display: none !important;
}

.nav-links a.cta-button:hover::after {
    display: none !important;
    width: 0 !important;
}

.nav-links a.cta-button:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.35);
    transform: none !important;
    color: white !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-links a.cta-button {
    transform: none !important;
}

.nav-auth {
    display: flex;
    align-items: center;
    margin-right: 5px;
    flex-shrink: 0;
}

.auth-button {
    color: white;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-button:hover {
    color: #d2d2d7;
}

.logout-icon {
    transition: all 0.3s ease;
}

.auth-button:hover .logout-icon {
    transform: translateX(2px);
}

.nav-links a:hover:not(.cta-button) {
    color: #d2d2d7;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d2d2d7 0%, #e5e5e7 100%);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-home {
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: absolute;
    left: calc(50% - 370px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    margin-left: 45px;
}

.nav-home:hover {
    color: #d2d2d7;
}

.nav-home::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d2d2d7 0%, #e5e5e7 100%);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: #1a1a1a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.cta-button:hover {
    background: #2a2a2a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Buttons */
.primary-button {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 1rem;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.primary-button:hover {
    background: #2a2a2a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.secondary-button {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.secondary-button:hover {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

.hero::after {
    display: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    overflow: visible;
    padding: 20px;
    padding-top: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 8px;  
    padding-bottom: 8px;
    padding-right: 8px;
}

.stats-row {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    padding: 10px;
}

.stats-row:nth-child(2) {
    justify-content: space-around;
    gap: 2rem;
}

.stats-row:nth-child(2) .stat-card:first-child {
    margin-left: 0;
}

.stats-row:nth-child(2) .stat-card:last-child {
    margin-right: 0;
}

.stats-row:nth-child(2) .stat-card {
    flex: 2;
    min-width: 350px;
}

.stat-card {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    height: 50px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.1s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card.wide {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
}

.stat-card.medium {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
}

.stat-card.narrow {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
}

.stat-card.extra-wide {
    width: 350px;
    min-width: 350px;
    max-width: 350px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: -1;
    background: transparent;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    box-sizing: border-box;
}

.stat-card:hover {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-card.highlighted {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: all 0.3s ease;
    z-index: 20;
    position: relative;
}

.stat-card.highlighted:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card.highlighted .stat-title {
    font-size: 1rem;
    font-weight: 700;
}

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

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.15rem;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
}

.stat-title.highlighted {
    font-size: 0.9rem;
}

.stat-subtitle {
    font-size: 0.65rem;
    color: #ffffff;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.website-preview {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.website-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.01);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7);
}

.preview-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28ca42; }

.preview-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-nav {
    height: 40px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-hero {
    height: 120px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.preview-card {
    height: 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #a8a8a8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(89, 83, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
    transform: none !important;
}

.feature-card:hover {
    border-color: #595353;
    transform: none !important;
}

.feature-icon {
    color: #a8a8a8;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    transform: none !important;
}

.feature-card:hover .feature-icon {
    transform: none !important;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #a8a8a8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 70%, rgba(89, 83, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.pricing-card.featured-card {
    border: 2px solid #595353;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(89, 83, 83, 0.3);
}

.pricing-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.3);
    pointer-events: none;
}

.pricing-card.unavailable:hover {
    transform: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.unavailable-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a8a8a8;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #595353 0%, #7a7a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: #a8a8a8;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    color: #a8a8a8;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.pricing-features li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.pricing-features li::before {
    display: none;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #a8a8a8;
}

.primary-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(26, 26, 26, 0.8);
}

.primary-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* About */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(89, 83, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #595353;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #595353 0%, #7a7a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    color: #a8a8a8;
    font-weight: 500;
}

.founder-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.founder-card:hover {
    border-color: #595353;
}

.founder-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.founder-info p {
    color: #a8a8a8;
    margin-bottom: 0.25rem;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(89, 83, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #a8a8a8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.contact-label {
    font-weight: 600;
    color: #ffffff;
    min-width: 80px;
}

.contact-item a {
    color: #595353;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #7a7a7a;
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: #595353;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a8a8a8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #595353;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(89, 83, 83, 0.3);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-monogram {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-text {
    color: #a8a8a8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-section a {
    display: block;
    color: #a8a8a8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #595353;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #a8a8a8;
    font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0;
    }
    
    .nav-logo {
        margin-left: 5px;
    }
    
    .nav-auth {
        margin-right: 5px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-logo {
        margin-bottom: 0;
    }
    
    .nav-logo .logo-image {
        height: 32px;
        max-width: 100px;
    }
    
    .nav-auth {
        margin-left: auto;
    }
    
    .auth-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 60px;
    }
    
    .stat-card.wide,
    .stat-card.medium,
    .stat-card.narrow,
    .stat-card.extra-wide {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-card {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .website-preview {
        transform: none;
    }
    
    .pricing-card {
        max-width: 350px;
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        top: 5px;
        left: 5px;
        right: 5px;
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0;
    }
    
    .nav-logo {
        margin-left: 5px;
    }
    
    .nav-auth {
        margin-right: 5px;
    }
    
    .nav-logo .logo-image {
        height: 28px;
        max-width: 80px;
    }
    
    .auth-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
} 

.preview-hero-image {
    height: 120px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 120"><rect width="600" height="120" fill="%232a2a2a"/><circle cx="300" cy="60" r="30" fill="%233a3a3a" opacity="0.3"/><rect x="200" y="40" width="200" height="40" fill="%233a3a3a" opacity="0.2"/><circle cx="260" cy="60" r="10" fill="%233a3a3a" opacity="0.4"/><rect x="320" y="50" width="120" height="20" fill="%233a3a3a" opacity="0.3"/><rect x="100" y="20" width="50" height="10" fill="%233a3a3a" opacity="0.1"/><rect x="450" y="90" width="80" height="15" fill="%233a3a3a" opacity="0.15"/></svg>');
    background-size: cover;
}

.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.property-address {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-details {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.75rem;
}

.property-info {
    margin-bottom: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: #a8a8a8;
    font-weight: 500;
}

.info-value {
    color: white;
    font-weight: 600;
}

.property-association {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.association-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.association-details {
    color: #a8a8a8;
    font-size: 0.7rem;
}

.association-address {
    color: #a8a8a8;
    font-size: 0.75rem;
}

.property-costs {
    margin-bottom: 0.75rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.cost-label {
    color: #a8a8a8;
    font-weight: 500;
}

.cost-value {
    color: white;
    font-weight: 600;
}

.show-more {
    text-align: center;
    color: #595353;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.show-more:hover {
    color: #7a7a7a;
    background: rgba(255, 255, 255, 0.1);
} 

/* Simple Design Preview Carousel */
.design-preview-carousel {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    padding: 80px 0;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.design-preview-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(89, 83, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.simple-carousel {
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-preview {
    flex: 0 0 auto;
    text-align: center;
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 0;
}

.design-preview.active {
    opacity: 1;
    transform: scale(1);
}

.design-preview.unavailable {
    opacity: 0.3;
    transform: scale(0.7);
    filter: grayscale(0.8);
    pointer-events: none;
}

.design-preview.unavailable .preview-rectangle {
    border-color: rgba(255, 255, 255, 0.05);
}

.design-preview.unavailable .design-name {
    opacity: 0.5;
}

.design-preview.unavailable::after {
    content: 'Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 20;
    pointer-events: none;
}

.preview-rectangle {
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.preview-rectangle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.preview-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-hero {
    height: 80px;
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    position: relative;
}

.preview-details {
    flex: 1;
    padding: 12px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.label {
    color: #a8a8a8;
    font-weight: 500;
}

.value {
    color: #ffffff;
    font-weight: 600;
}

/* Additional content rows for future images */
.preview-rectangle:hover .preview-details {
    padding: 16px;
    font-size: 0.85rem;
}

.preview-rectangle:hover .detail-row {
    margin-bottom: 8px;
}

/* Add more content rows that appear on hover */
.preview-rectangle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    transition: height 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-rectangle:hover::after {
    height: 50px;
}

/* Additional content that appears on hover */
.preview-rectangle:hover .preview-content::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 12px;
    right: 12px;
    height: 25px;
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-radius: 4px;
    opacity: 0.8;
}

.preview-rectangle:hover .preview-content::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 12px;
    right: 12px;
    height: 18px;
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    border-radius: 3px;
    opacity: 0.6;
}

.design-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #595353 0%, #7a7a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Theme variations */
.preview-rectangle.dark-theme {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.preview-rectangle.light-theme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-rectangle.light-theme .preview-header {
    background: #e9ecef;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-rectangle.light-theme .preview-hero {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
}

.preview-rectangle.light-theme .label {
    color: #666666;
}

.preview-rectangle.light-theme .value {
    color: #333333;
}

.preview-rectangle.luxury-theme {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
}

.preview-rectangle.luxury-theme .preview-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-bottom: 1px solid #d4af37;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 10;
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

.carousel-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(25px);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) translateX(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-btn.next-btn:hover {
    transform: translateY(-50%) translateX(3px) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) translateX(-1px) scale(1.02);
}

.carousel-btn.next-btn:active {
    transform: translateY(-50%) translateX(1px) scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 60px;
    }
    
    .preview-rectangle {
        width: 150px;
        height: 120px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
} 

.cta-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(25,25,25,0.85) 60%, #595353 100%);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

.stat-card {
    position: relative;
    z-index: 1;
}

.hero-title, .hero-subtitle, .section-header h2 {
    position: relative;
    z-index: 1;
}

.hero-title-bg, .section-header-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 120%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(25,25,25,0.85) 60%, #595353 100%);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 0;
    pointer-events: none;
} 

/* Bottom Actions */
.bottom-actions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.action-note {
    color: #a8a8a8;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for bottom actions */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-buttons .primary-button,
    .action-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
} 

.nav-logo {
    display: flex;
    align-items: center;
    margin-bottom: -5px;
    margin-left: 5px;
    flex-shrink: 0;
}

.nav-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    opacity: 1;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.nav-logo a:hover .logo-image {
    transform: rotate(90deg);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a8a8a8;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #595353;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a8a8a8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #595353;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
} 

/* Privacy Policy Page Styles */
.privacy-main {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    scroll-snap-type: y mandatory;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.privacy-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.privacy-header p {
    color: #a8a8a8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: block;
    scroll-snap-type: y mandatory;
}

.privacy-content * {
    display: block;
    width: 100%;
    float: none;
    clear: both;
}

.privacy-section {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
    float: none;
    clear: both;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.privacy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
    width: 100%;
}

.privacy-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
    display: block;
    width: 100%;
}

.privacy-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 500;
    display: block;
    width: 100%;
}

.privacy-section p {
    color: #a8a8a8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    display: block;
    width: 100%;
}

.privacy-section ul {
    color: #a8a8a8;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    display: block;
    width: 100%;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    display: block;
    width: 100%;
}

.privacy-section strong {
    color: #ffffff;
    font-weight: 600;
}

.privacy-section a {
    color: #595353;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.privacy-section a:hover {
    color: #7a7a7a;
    text-decoration: underline;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #a8a8a8;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-main {
        padding: 120px 0 60px;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-header {
        margin-bottom: 3rem;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
} 

.designs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.designs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.design-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    height: 500px;
    text-decoration: none;
    display: block;
    color: inherit;
}

.design-card:hover {
    box-shadow: none;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.design-card.scandinavia-design {
    background-image: url('../images/scandinavia-preview.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    cursor: pointer;
}

.design-card.scandinavia-design::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 19px;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-card.scandinavia-design:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.design-card.scandinavia-design:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.design-card.miami-design {
    background-image: url('../images/miami-preview.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    cursor: pointer;
}

.design-card.miami-design::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 19px;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-card.miami-design:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.design-card.miami-design:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.design-card.miami-design .design-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.design-card.miami-design .design-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    opacity: 1;
}

.design-card.miami-design .design-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

.design-card.miami-design:hover .design-content h3 {
    transform: none;
}

.design-card.miami-design:hover .design-content p {
    opacity: 1;
    transform: none;
}

.design-card.miami-design:hover .feature-tag {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none;
}

.design-card.miami-design:hover .design-actions .primary-button,
.design-card.miami-design:hover .design-actions .secondary-button {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none !important;
}

.design-card:hover {
    box-shadow: none;
}

.design-image {
    display: none;
}

.design-preview {
    display: none;
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.design-card:hover .design-overlay {
    opacity: 1;
}

.design-card:hover .design-preview {
    transform: scale(1.05);
}

.view-design-btn {
    background: #595353;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-design-btn:hover {
    background: #7a7a7a;
}

.design-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.design-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.design-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.design-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-card.scandinavia-design:hover .feature-tag {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.design-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.design-actions .primary-button,
.design-actions .secondary-button {
    flex: 1;
    min-width: 120px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transform: none !important;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.design-card.scandinavia-design:hover .design-actions .primary-button,
.design-card.scandinavia-design:hover .design-actions .secondary-button {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none !important;
}

.coming-soon {
    opacity: 0.6;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .designs-grid {
        grid-template-columns: 1fr;
    }
    
    .design-actions {
        flex-direction: column;
    }
    
    .design-actions .primary-button,
    .design-actions .secondary-button {
        flex: none;
    }
} 

.design-card.miami-design:hover .design-actions .primary-button,
.design-card.miami-design:hover .design-actions .secondary-button {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none !important;
}

.design-card.scandinavia-design .design-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.design-card.scandinavia-design .design-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    opacity: 1;
}

.design-card.scandinavia-design .design-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
} 