/* Premium Savvy Sophisticated Theme CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #01662c 0%, #0fbb59 100%);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #c9b037;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo h2 {
    background: linear-gradient(135deg, #c9b037, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #c9b037;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #01662c 0%, #0fbb59 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 61.8,38.2 90,38.2 68.1,55.9 79.4,84.5 50,66.8 20.6,84.5 31.9,55.9 10,38.2 38.2,38.2" fill="%23d4af37" opacity="0.1"/></svg>') repeat;
    background-size: 200px 200px;
    animation: premium-float 30s linear infinite;
}

@keyframes premium-float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.15; }
    100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-btn {
    background: linear-gradient(135deg, #c9b037, #d4af37);
    color: #1a1a1a;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.3);
    font-family: 'Source Sans Pro', sans-serif;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #b8a040, #c9b037);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 176, 55, 0.4);
    color: white;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about p {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 60px;
    color: #444;
    line-height: 1.9;
    font-weight: 300;
}

.prime-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature {
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #c9b037;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 176, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-top-color: #d4af37;
}

.feature h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.feature p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #d4af37;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border-left: 5px solid #c9b037;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:nth-child(even) {
    border-left-color: #d4af37;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.why-choose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.reason {
    padding: 45px 35px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #c9b037;
}

.reason::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(201, 176, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.reason:hover::before {
    animation: premium-shine 0.8s ease-out;
}

@keyframes premium-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.reason:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-top-color: #d4af37;
}

.reason h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.reason p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

/* Warranty Section */
.warranty {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.warranty h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 35px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.5px;
}

.warranty p {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 45px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
}

.warranty ul {
    list-style: none;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.warranty li {
    padding: 18px 0;
    font-weight: 400;
    position: relative;
    padding-left: 45px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.warranty li:last-child {
    border-bottom: none;
}

.warranty li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5rem;
    top: 15px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #fafafa;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9b037;
    box-shadow: 0 0 0 4px rgba(201, 176, 55, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #c9b037, #d4af37);
    color: #1a1a1a;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 176, 55, 0.3);
    font-family: 'Source Sans Pro', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b8a040, #c9b037);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 176, 55, 0.4);
    color: white;
}

.form-message {
    margin-top: 25px;
    padding: 18px;
    border-radius: 15px;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #c9b037;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 2px solid #dc3545;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 70px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(201, 176, 55, 0.2);
    transition: all 0.4s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 176, 55, 0.4);
}

.testimonial::before {
    content: '“';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: 'Playfair Display', serif;
}

.testimonial p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-top: 30px;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

.testimonial h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 80px 0 25px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #c9b037, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #999;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .reasons,
    .prime-features {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about h2,
    .services h2,
    .why-choose h2,
    .warranty h2,
    .contact h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }
    
    .about,
    .services,
    .why-choose,
    .warranty,
    .contact,
    .testimonials {
        padding: 80px 0;
    }
}