:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --light: #ecf0f1;
    --dark: #34495e;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

header.scrolled {
    background: var(--white);
    position: fixed;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .nav-link {
    color: var(--primary);
}

header.scrolled .logo {
    color: var(--primary);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.hero {
    height: 100vh;
    background: url('../images/hero-balcony.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col a:hover {
    color: var(--white);
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
}

.author-info span {
    font-size: 0.8rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-section p {
    margin-bottom: 40px;
    opacity: 0.8;
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Page Hero */
.page-hero {
    height: 60vh;
    min-height: 400px;
    background: url('../images/contact-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

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

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 100;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.contact-info > p {
    margin-bottom: 50px;
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-right: 25px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.info-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 60px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #fcfcfc;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
    display: inline-block;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}

/* Support Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 300;
}

.intro-content p {
    margin-bottom: 30px;
    color: var(--text);
    opacity: 0.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--dark);
}

.feature-list li i {
    color: var(--accent);
    margin-right: 15px;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-image {
        order: -1;
    }
}

/* Showroom Section */
.showroom-section {
    padding: 100px 0;
    background: url('../images/showroom.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
    text-align: center;
}

.showroom-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.8);
}

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

.showroom-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 100;
}

.showroom-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* =========================================
   Policy Page Styles (Privacy & Terms)
   ========================================= */

.small-hero {
    height: 40vh;
    min-height: 300px;
}

.small-hero h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

.policy-content {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.policy-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 300;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* =========================================
   Services Page Styles
   ========================================= */

.services-list {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

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

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-row:hover .service-image img {
    transform: translateY(-5px);
}

.service-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--accent);
    border-left: 5px solid var(--accent);
    z-index: -1;
}

.service-row.reverse .service-image::before {
    left: auto;
    right: -20px;
    border-left: none;
    border-right: 5px solid var(--accent);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 300;
}

.service-content p {
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 500;
}

.service-features li i {
    color: var(--accent);
    width: 30px;
    text-align: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .service-row, 
    .service-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .service-image::before {
        display: none;
    }
}



