
:root {
    --primary: #0a192f;
    --secondary: #64ffda;
    --accent: #f50057;
    --light: #f8f9fa;
    --dark: #172a45;
    --gray: #8892b0;
    --transition: all 0.4s ease;
    --shadow: 0 5px 25px rgba(0,0,0,0.15);
    --radius: 10px;
    --glow: 0 0 15px rgba(100, 255, 218, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: #ccd6f6;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #e6f1ff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--glow);
}

.btn:hover {
    background: #52d4bb;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

.btn-contact:hover {
    transform: none !important;
}


.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: rgba(100, 255, 218, 0.1);
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 500;
}

.whatsapp-chat{
    /* background: #25d366; */
    border-radius:50%;
    color: var(--secondary);
    position: fixed;
    width: 60px;
    height: 60px;
    right: 35px;
    bottom: 65px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.success-ms{
    color: green;
    margin: 10px 0px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.error-ms{
    color: var(--accent)
}

/* Masonry grid layout */
.grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.grid-sizer,
.grid-item {
  width: 16.66%;
  margin-bottom: 0px;
}

.grid-item--width2 {
  width: 33.33%;
}

.grid-item > a > img{
    padding: 5px;
    display: block;
    border-radius: var(--radius);
}

/* Preloader with Lightning Effect */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s, visibility 1s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.lightning-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lightning {
    position: absolute;
    width: 3px;
    height: 100px;
    background: #fff;
    opacity: 0;
    filter: blur(1px);
}

.lightning-1 {
    left: 20%;
    animation: lightningFlash 1.5s 0.5s infinite;
}

.lightning-2 {
    left: 45%;
    animation: lightningFlash 1.5s 1s infinite;
}

.lightning-3 {
    left: 70%;
    animation: lightningFlash 1.5s 1.5s infinite;
}

.logo-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.preloader-logo {
    font-size: 60px;
    color: var(--secondary);
    animation: pulse 2s infinite;
    margin-bottom: 20px;
}

.preloader-text {
    color: white;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes lightningFlash {
    0% { opacity: 0; height: 0; }
    5% { opacity: 1; height: 200px; }
    10% { opacity: 0; height: 300px; }
    100% { opacity: 0; height: 0; }
}

@keyframes pulse {
    0% { transform: scale(1); text-shadow: 0 0 5px var(--secondary); }
    50% { transform: scale(1.1); text-shadow: 0 0 20px var(--secondary); }
    100% { transform: scale(1); text-shadow: 0 0 5px var(--secondary); }
}

/* Header & Navigation */
header {
    background-color: rgba(10, 25, 47, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky {
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    font-size: 28px;
    color: var(--secondary);
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 24px;
    color: white;
    line-height: 1.1;
}

.logo-text span {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    font-weight: 600;
    color: #ccd6f6;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(23, 42, 69, 0.5)), url('../images/hero-bg.jpg') no-repeat bottom/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, rgba(10, 25, 47, 0.5) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: var(--secondary);
    display: block;
    font-size: 48px;
    margin-top: 10px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(100, 255, 218, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(5px);
}

.location-tag i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 20px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
    animation: fadeIn 1.5s ease;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: rgba(100, 255, 218, 0.05);
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(100, 255, 218, 0.1);
}

.feature-item i {
    font-size: 28px;
    color: var(--secondary);
    margin-right: 20px;
    min-width: 40px;
}

.section-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.section-image img {
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}



/* Services Section - Added EV Charging */
.services {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(23, 42, 69, 0.8) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/services-bg.jpg') no-repeat center bottom/cover;
    opacity: 0.1;
    z-index: -1;
}

.services .section-title h2 {
    color: var(--secondary);
}

.services .section-title p {
    color: #ccd6f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(23, 42, 69, 0.7);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 25px;
    font-size: 17px;
}

/* EV Charging Feature Section */
.ev-section {
    background: linear-gradient(to right, #0a192f, #172a45);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ev-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.ev-content {
    flex: 1;
    min-width: 300px;
}

.ev-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.ev-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.ev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ev-feature {
    display: flex;
    align-items: flex-start;
    background: rgba(100, 255, 218, 0.05);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--secondary);
}

.ev-feature i {
    font-size: 24px;
    color: var(--secondary);
    margin-right: 15px;
    min-width: 30px;
}

.ev-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Reviews Section */
.reviews {
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/reviews-bg.jpg') no-repeat center/cover;
    opacity: 0.1;
    z-index: -1;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(23, 42, 69, 0.7);
    border-radius: var(--radius);
    padding: 40px;
    margin: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: var(--secondary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-content {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.review-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.author-info p {
    color: var(--gray);
    font-size: 15px;
}

.rating {
    margin-top: 8px;
    font-size: 18px;
}

.painted-star
{
    color: #ffc107;
}

/* Partnerships */
.partnerships {
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.6;
    transition: var(--transition);
    transform: scale(0.9);
}

.partner-item:hover {
    filter: grayscale(0) brightness(100%);
    opacity: 1;
    transform: scale(1);
}

.partner-item img {
    max-height: 70px;
    max-width: 100%;
}

/* Gallery Section */
.gallery {
    position: relative;
    overflow: hidden;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 22px;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(23, 42, 69, 0.9) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background: rgba(23, 42, 69, 0.7);
    padding: 25px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    background: rgba(23, 42, 69, 0.8);
    transform: translateX(10px);
    border-color: rgba(100, 255, 218, 0.3);
}

.contact-item i {
    font-size: 28px;
    margin-right: 20px;
    color: var(--secondary);
    min-width: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background: #f9f9f9;
    color: #333;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(to right, #0a192f 0%, #0d1b32 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccd6f6;
    transition: var(--transition);
    display: inline-block;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(8px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 20px;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-8px);
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23, 42, 69, 0.95);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--secondary);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
    font-size: 16px;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-settings {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    .section {
        padding: 80px 0;
    }
    .hero-btns {
        flex-wrap: wrap;
    }
    .ev-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--primary);
        width: 80%;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero h1 span {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }

    .about-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h1 span {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-item i {
        margin-bottom: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .ev-features {
        grid-template-columns: 1fr;
    }

    .grid-sizer,
    .grid-item {
        width: 50%;
        margin-bottom: 0px;
    }

    .grid-item--width2 {
        width: 50%;
    }
}