 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
     color: #2c2c2c;
     background-color: #fafafa;
     overflow-x: hidden;
 }

 /* Header */
 .header {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(212, 175, 55, 0.3);
     color: #2c2c2c;
     padding: 1rem 0;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .header.scrolled {
     background: rgba(255, 255, 255, 0.98);
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
 }

 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 2rem;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 300;
     letter-spacing: 2px;
     color: #d4af37;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 3rem;
 }

 .nav-menu a {
     color: #2c2c2c;
     text-decoration: none;
     font-weight: 300;
     font-size: 0.95rem;
     letter-spacing: 1px;
     padding: 0.5rem 1rem;
     border-radius: 30px;
     transition: all 0.3s ease;
     position: relative;
 }

 .nav-menu a::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #d4af37, #f4e4bc);
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

 .nav-menu a:hover::before {
     width: 100%;
 }

 .nav-menu a:hover {
     color: #d4af37;
     background: rgba(212, 175, 55, 0.1);
 }

 .mobile-menu-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: #d4af37;
 }

 /* Main Content */
 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
     color: white;
     padding: 120px 0 100px;
     text-align: center;
     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 1200 800"><defs><pattern id="luxury" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(244,228,188,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(212,175,55,0.08)"/></pattern></defs><rect width="1200" height="800" fill="url(%23luxury)"/></svg>');
     animation: luxuryFloat 20s ease-in-out infinite;
 }

 @keyframes luxuryFloat {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(1deg);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 4.5rem;
     margin-bottom: 1.5rem;
     font-weight: 200;
     letter-spacing: 3px;
     background: linear-gradient(135deg, #d4af37, #f4e4bc, #d4af37);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero p {
     font-size: 1.4rem;
     margin-bottom: 2.5rem;
     opacity: 0.9;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 300;
     letter-spacing: 1px;
 }

 .cta-button {
     background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
     color: #1a1a1a;
     padding: 18px 40px;
     border: none;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 400;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .cta-button:hover {
     background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
 }

 /* Section Styles */
 .section {
     padding: 100px 0;
     position: relative;
 }

 .section:nth-child(even) {
     background: white;
 }

 .section-title {
     text-align: center;
     font-size: 3rem;
     margin-bottom: 4rem;
     color: #1a1a1a;
     font-weight: 200;
     letter-spacing: 2px;
     position: relative;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 2px;
     background: linear-gradient(90deg, #d4af37, #f4e4bc);
     margin: 30px auto;
 }

 /* About Section */
 .about {
     background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
 }

 .display {
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Two equal columns */
     gap: 5rem;
     align-items: center;
 }

 .about-text {
     font-size: 1.1rem;
     line-height: 1.8;
     /* Fixed invalid value */
     color: #555;
 }

 .about-stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
     margin-top: 3rem;
 }


 .stat-item {
     text-align: center;
     padding: 2rem;
     background: rgba(212, 175, 55, 0.05);
     border-radius: 20px;
     border: 1px solid rgba(212, 175, 55, 0.2);
     transition: all 0.3s ease;
 }

 .stat-item:hover {
     background: rgba(212, 175, 55, 0.1);
     transform: translateY(-5px);
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: 200;
     color: #d4af37;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     font-size: 0.9rem;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .about-image {
     background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
     height: 500px;
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #d4af37;
     font-size: 1.5rem;
     position: relative;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
 }

 .about-image::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 400 400"><circle cx="200" cy="200" r="100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><circle cx="200" cy="200" r="60" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/><circle cx="200" cy="200" r="20" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></svg>');
 }

 /* Services Grid */
 .services {
     background: white;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2.5rem;
 }

 .service-card {
     background: white;
     padding: 3rem 2rem;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(212, 175, 55, 0.1);
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #d4af37, #f4e4bc);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .service-icon {
     font-size: 3.5rem;
     background: linear-gradient(135deg, #d4af37, #f4e4bc);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 1.5rem;
 }

 .service-card h3 {
     font-size: 1.4rem;
     margin-bottom: 1.5rem;
     color: #1a1a1a;
     font-weight: 300;
     letter-spacing: 1px;
 }

 .service-card p {
     color: #666;
     line-height: 1.7;
 }

 /* FAQ Section */
 .faq {
     background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
 }

 .faq-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .faq-item {
     background: white;
     margin-bottom: 2rem;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(212, 175, 55, 0.1);
 }

 .faq-question {
     background: none;
     border: none;
     padding: 2rem;
     width: 100%;
     text-align: left;
     font-size: 1.2rem;
     font-weight: 300;
     cursor: pointer;
     color: #1a1a1a;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s ease;
     letter-spacing: 1px;
 }

 .faq-question:hover {
     background: rgba(212, 175, 55, 0.05);
 }

 .faq-answer {
     padding: 0 2rem 2rem;
     display: none;
     color: #555;
     line-height: 1.7;
     font-weight: 300;
 }

 .faq-answer.active {
     display: block;
     animation: slideDown 0.3s ease;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Warranty Packages */
 .warranty {
     background: white;
 }

 .packages-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 3rem;
 }

 .package-card {
     background: white;
     padding: 3rem 2.5rem;
     border-radius: 20px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     text-align: center;
     position: relative;
     overflow: hidden;
     transition: all 0.4s ease;
     border: 2px solid rgba(212, 175, 55, 0.1);
 }

 .package-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #d4af37, #f4e4bc);
 }

 .package-card.featured {
     border-color: #d4af37;
     transform: scale(1.05);
     background: linear-gradient(135deg, #fffef7 0%, #fffdf5 100%);
 }

 .package-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
 }

 .package-card.featured:hover {
     transform: scale(1.05) translateY(-8px);
 }

 .package-name {
     font-size: 1.6rem;
     font-weight: 300;
     color: #1a1a1a;
     margin-bottom: 1rem;
     letter-spacing: 2px;
     text-transform: uppercase;
 }

 .package-price {
     font-size: 3rem;
     font-weight: 200;
     color: #d4af37;
     margin-bottom: 2rem;
 }

 .package-features {
     list-style: none;
     margin: 2.5rem 0;
 }

 .package-features li {
     padding: 1rem 0;
     border-bottom: 1px solid rgba(212, 175, 55, 0.1);
     color: #555;
     font-weight: 300;
 }

 .package-features li:last-child {
     border-bottom: none;
 }

 /* Testimonials */
 .testimonials {
     background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
     color: white;
 }

 .testimonials .section-title {
     color: white;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 3rem;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.05);
     padding: 3rem;
     border-radius: 20px;
     text-align: center;
     position: relative;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(212, 175, 55, 0.2);
 }

 .testimonial-card::before {
     content: '"';
     position: absolute;
     top: -20px;
     left: 50%;
     transform: translateX(-50%);
     font-size: 6rem;
     color: #d4af37;
     font-family: 'Georgia', serif;
     line-height: 1;
     opacity: 0.3;
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 2rem;
     font-size: 1.2rem;
     line-height: 1.7;
     font-weight: 300;
     opacity: 0.9;
 }

 .testimonial-author {
     font-weight: 300;
     color: #d4af37;
     font-size: 1.1rem;
     letter-spacing: 1px;
 }

 .testimonial-stars {
     color: #d4af37;
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
 }

 /* Quote Section */
 .quote-section {
     background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
     color: white;
 }

 .quote-section .section-title {
     color: white;
 }

 .quote-form-container {
     background: rgba(255, 255, 255, 0.05);
     padding: 4rem;
     border-radius: 20px;
     backdrop-filter: blur(20px);
     max-width: 700px;
     margin: 0 auto;
     border: 1px solid rgba(212, 175, 55, 0.2);
 }

 .form-group {
     margin-bottom: 2rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.8rem;
     font-weight: 300;
     color: #d4af37;
     letter-spacing: 1px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 1.2rem;
     border: 1px solid rgba(212, 175, 55, 0.3);
     border-radius: 10px;
     font-size: 1rem;
     background: rgba(255, 255, 255, 0.05);
     color: white;
     transition: all 0.3s ease;
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #d4af37;
     background: rgba(255, 255, 255, 0.1);
     box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
 }

 .form-group select option {
     color: #1a1a1a;
     background: white;
 }

 /* Footer */
 .footer {
     background: #1a1a1a;
     color: white;
     padding: 4rem 0 2rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-section h3 {
     margin-bottom: 2rem;
     color: #d4af37;
     font-weight: 300;
     letter-spacing: 2px;
     font-size: 1.3rem;
 }

 .footer-section p,
 .footer-section li {
     margin-bottom: 1rem;
     color: #ccc;
     font-weight: 300;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-section a:hover {
     color: #d4af37;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 3rem;
     border-top: 1px solid #333;
     color: #999;
     font-weight: 300;
 }

 .footer-popup-links {
     margin-top: 2rem;
 }

 .footer-popup-links a {
     margin-right: 2rem;
     color: #d4af37;
     text-decoration: underline;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .footer-popup-links a:hover {
     color: #f4e4bc;
 }

 /* Popup Styles */
 .popup-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(26, 26, 26, 0.8);
     z-index: 2000;
     backdrop-filter: blur(10px);
 }

 .popup {
     display: none;
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: white;
     padding: 3rem;
     border-radius: 20px;
     max-width: 600px;
     width: 90%;
     max-height: 80vh;
     overflow-y: auto;
     z-index: 2001;
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
 }

 .popup-close {
     float: right;
     font-size: 2rem;
     cursor: pointer;
     color: #999;
     transition: color 0.3s ease;
 }

 .popup-close:hover {
     color: #d4af37;
 }

 .popup h3 {
     margin-bottom: 2rem;
     color: #1a1a1a;
     font-weight: 300;
     letter-spacing: 2px;
 }

 .form-group {
     margin-bottom: 2rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.8rem;
     font-weight: 300;
     color: #1a1a1a;
     letter-spacing: 1px;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 1.2rem;
     border: 1px solid rgba(212, 175, 55, 0.3);
     border-radius: 10px;
     font-size: 1rem;
     background: rgba(212, 175, 55, 0.05);
     color: #1a1a1a;
 }

 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .checkbox-group input[type="checkbox"] {
     width: auto;
     transform: scale(1.2);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .mobile-menu-toggle {
         display: block;
     }

     .nav-menu {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(20px);
         flex-direction: column;
         padding: 2rem;
         box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     }

     .nav-menu.active {
         display: flex;
     }

     .hero h1 {
         font-size: 3rem;
     }

     .about-content {
         grid-template-columns: 1fr;
     }

     .about-stats {
         grid-template-columns: 1fr;
     }

     .packages-grid {
         grid-template-columns: 1fr;
     }

     .package-card.featured {
         transform: none;
     }

     .package-card.featured:hover {
         transform: translateY(-8px);
     }

     .quote-form-container {
         padding: 2rem;
     }

     .section-title {
         font-size: 2.2rem;
     }
 }

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(50px);
     transition: all 1s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .slide-in-left {
     opacity: 0;
     transform: translateX(-50px);
     transition: all 1s ease;
 }

 .slide-in-left.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .slide-in-right {
     opacity: 0;
     transform: translateX(50px);
     transition: all 1s ease;
 }

 .slide-in-right.visible {
     opacity: 1;
     transform: translateX(0);
 }

 /* Luxury Particles */
 .section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="rgba(212,175,55,0.1)"/><circle cx="90" cy="30" r="0.3" fill="rgba(244,228,188,0.05)"/><circle cx="30" cy="90" r="0.4" fill="rgba(212,175,55,0.08)"/></svg>');
     pointer-events: none;
     animation: particleFloat 15s ease-in-out infinite;
 }

 @keyframes particleFloat {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }