/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #FFAE00;
    --background-color: #ECEEF0;
    --text-color: #000000;
    --border-radius: 0px;
}

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

body {
    font-family: 'Alexandria', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000000;
    color: white;
    border: 1px solid #000000;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 400;
    font-size: 24px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.btn-outline:hover {
    background-color: #000000;
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #000000;
}

.logo {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    padding: 18px 103px;
    border-right: 1px solid #000000;
}

.logo span {
    color: var(--secondary-color);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 0;
    border-right: 1px solid #000000;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    padding: 25px 80px;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 174, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section - UPDATED COLORS */
.hero {
    background: var(--background-color);
    color: #FFAE00; /* Yellow color for main text */
    padding: 266px 0 100px 100px;
    text-align: left;
    position: relative;
    min-height: 800px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 98px;
    margin-bottom: 50px;
    width: 503px;
    color: #FFAE00; /* Yellow color for heading */
}

.hero p {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    width: 812px;
    margin-bottom: 50px;
    color: #000000; /* Black color for paragraph */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
}

/* Hero Section - Image Collage */
.image-collage {
    position: absolute;
    right: 100px;
    top: 223px;
    width: 750px;
    height: 706px;
    background: url('/images/appliances-collage.png') no-repeat center center;
    background-size: cover;
    border: 1px solid #ddd;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--background-color);
}

.section-title h2 {
    font-size: 80px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 50px;
    text-align: left;
    padding-left: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 30px;
    max-width: 100%;
}

.service-card {
    position: relative;
    border: 2px solid #000000;
    border-radius: 0px;
    overflow: hidden;
    height: 371px;
    background: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
}

.service-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: white;
    margin: 0;
}

/* Special handling for Fridges card with different height */
.service-card:nth-child(4) {
    height: 413px;
}

/* Responsive adjustments for Services */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card,
    .service-card:nth-child(4) {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        margin: 0 15px;
        gap: 20px;
    }
    
    .service-card,
    .service-card:nth-child(4) {
        height: 300px;
    }
    
    .section-title h2 {
        font-size: 60px;
        padding-left: 20px;
        margin-bottom: 30px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-card,
    .service-card:nth-child(4) {
        height: 250px;
    }
    
    .section-title h2 {
        font-size: 50px;
        padding-left: 15px;
    }
    
    .services-grid {
        margin: 0 15px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-size: 80px;
    font-weight: 400;
    color: #FFAE00;
    margin-bottom: 20px;
    padding-left: 100px;
}

.about-text p {
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 20px;
    width: 850px;
    margin-left: 100px;
    color: #000000;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--background-color);
}

.reviews .section-title h2 {
    font-size: 80px;
    font-weight: 400;
    color: #000000;
    text-align: right;
    padding-right: 100px;
    padding-left: 0;
    margin-bottom: 15px;
}

.reviews .section-title p {
    font-size: 32px;
    font-weight: 300;
    color: #000000;
    text-align: right;
    padding-right: 100px;
    padding-left: 0;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin: 0 100px;
}

.review-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.review-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-style: normal;
}

.review-author {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-align: center;
}

.stars {
    color: #FFAE00;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.contact-info h3 {
    margin-bottom: 20px;
    color: #000000;
    font-size: 32px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #000000;
}

.contact-info i {
    margin-right: 10px;
    color: #000000;
    width: 20px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    color: #000000;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

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

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: 0 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        border-right: none;
        border-bottom: 1px solid #000000;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px 50px;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 50px;
        line-height: 60px;
        width: 100%;
        max-width: 400px;
        color: #FFAE00;
    }
    
    .hero p {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        max-width: 500px;
        color: #000000;
    }
    
    .image-collage {
        right: 30px;
        top: 150px;
        width: 300px;
        height: 300px;
    }
    
    .about-text h2,
    .about-text p {
        padding-left: 0;
        margin-left: 0;
        width: 100%;
    }
    
    .reviews .section-title h2,
    .reviews .section-title p {
        padding-right: 0;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        margin: 0 20px;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px 20px;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 40px;
        line-height: 48px;
        color: #FFAE00;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 24px;
        color: #000000;
    }
    
    .image-collage {
        display: none;
    }
    
    .section-title h2 {
        font-size: 40px;
    }
    
    .about-text h2 {
        font-size: 40px;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo {
        padding: 15px 30px;
        font-size: 28px;
    }
    
    .nav-menu a {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* Form Validation Styles */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.field-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Improve form focus states */
.form-control:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}