:root {
    --primary-color: #266A55;
    --secondary-color: #126556;
    --accent-color: #0d4a3d;
    --light-bg: #e8f5f2;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient: linear-gradient(135deg, #266A55 0%, #126556 100%);
    --gradient-hover: linear-gradient(135deg, #2d7a63 0%, #147862 100%);
    --shadow: 0 10px 40px rgba(38, 106, 85, 0.15);
    --shadow-hover: 0 20px 60px rgba(38, 106, 85, 0.3);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --perspective: 1000px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(38, 106, 85, 0.03) 100%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
    position: relative;
    font-weight: 700;
    transform-style: preserve-3d;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(38, 106, 85, 0.4);
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    margin: 50px 0 30px;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(38, 106, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(38, 106, 85, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--primary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 101, 86, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo h1 span {
    color: #7fffd4;
}

.logo .tagline {
    color: #a8e6cf;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #7fffd4;
    border-radius: 2px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #7fffd4;
    transform: translateY(-3px);
}

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

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('img/img7.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
    animation: overlayPulse 5s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #000000;
    padding: 20px;
    transform-style: preserve-3d;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.hero h1 span {
    color: #126556;
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(127, 255, 212, 0.5); }
    to { text-shadow: 0 0 30px rgba(127, 255, 212, 0.8), 0 0 60px rgba(127, 255, 212, 0.4); }
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hindi-line {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Card Effects */
.card-3d {
    transform-style: preserve-3d;
    perspective: var(--perspective);
    transition: var(--transition);
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

.card-3d .card-front {
    backface-visibility: hidden;
    transition: var(--transition);
}

.card-3d:hover .card-front {
    transform: translateZ(30px);
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image {
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.about-image:hover img {
    transform: translateY(-20px) scale(1.02) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(38, 106, 85, 0.3);
}

.developer-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: var(--transition);
}

.developer-info:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.developer-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.previous-projects h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.project-card:hover {
    transform: translateY(-20px) rotateX(10deg);
    box-shadow: var(--shadow-hover);
}

.project-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.project-card:hover i {
    transform: scale(1.3) rotateY(360deg);
}

/* RERA Section */
.rera-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.rera-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127,255,212,0.1) 0%, transparent 50%);
    animation: reraGlow 4s ease-in-out infinite;
}

@keyframes reraGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.rera-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.rera-icon {
    perspective: 500px;
}

.rera-icon i {
    font-size: 5rem;
    color: #7fffd4;
    animation: iconPulse 2s ease-in-out infinite;
    display: block;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rera-details {
    color: var(--white);
}

.rera-details h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.rera-number {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Amenities Section */
.amenities-grid, .lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.amenity-card, .lifestyle-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
    transform-style: preserve-3d;
    position: relative;
}

.amenity-card::after, .lifestyle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    transition: 0.3s ease;
}

.amenity-card:hover::after, .lifestyle-card:hover::after {
    width: 80%;
}

.amenity-card:hover, .lifestyle-card:hover {
    transform: translateY(-25px) rotateX(10deg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.amenity-card i, .lifestyle-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.amenity-card:hover i, .lifestyle-card:hover i {
    transform: scale(1.4) rotateY(360deg);
    color: var(--secondary-color);
}

.amenity-card h4, .lifestyle-card h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Club House Section */
.club-section {
    background: var(--light-bg);
}

.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.club-image {
    perspective: 1000px;
}

.club-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.club-image:hover img {
    transform: rotateY(-10deg) translateZ(30px);
    box-shadow: var(--shadow-hover);
}

.club-features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.club-features ul {
    list-style: none;
}

.club-features li {
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.club-features li:hover {
    transform: translateX(15px);
    color: var(--primary-color);
}

.club-features li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(38, 106, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.club-features li:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2);
}

/* Kids Section */
.kids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.kids-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.kids-card:hover {
    transform: translateY(-25px) rotateX(5deg);
    box-shadow: var(--shadow-hover);
}

.kids-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.kids-card:hover img {
    transform: scale(1.1);
}

.kids-card h4 {
    padding: 25px 25px 15px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.kids-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
}

/* Sports Section */
.sports-section {
    background: var(--light-bg);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.sports-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.sports-card:hover {
    transform: translateY(-25px) rotateX(8deg);
    box-shadow: var(--shadow-hover);
}

.sports-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.sports-card:hover img {
    transform: scale(1.1);
}

.sports-card h4 {
    padding: 25px 25px 15px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.sports-card p {
    padding: 0 25px 25px;
    color: var(--text-light);
}

/* Temple Section */
.temple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.temple-image {
    perspective: 1000px;
}

.temple-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.temple-image:hover img {
    transform: rotateY(10deg) translateZ(30px);
    box-shadow: var(--shadow-hover);
}

.temple-features h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.temple-features ul {
    list-style: none;
}

.temple-features li {
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.temple-features li:hover {
    transform: translateX(15px);
    color: var(--primary-color);
}

.temple-features li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(38, 106, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.temple-features li:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2);
}

/* Plots Section */
.plots-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.plots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.plots-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.plots-intro {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.total-plots {
    font-size: 1.8rem;
}

.total-plots strong {
    color: #7fffd4;
    font-size: 2.5rem;
}

.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.plot-card {
    background: var(--white);
    padding: 50px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.plot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.plot-card:hover {
    transform: translateY(-20px) rotateX(10deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.plot-size {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.plot-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Location Section */
.location-section {
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.address-box, .landmarks-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.address-box:hover, .landmarks-box:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: var(--shadow-hover);
}

.address-box h3, .landmarks-box h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.address-box h3 i {
    color: var(--primary-color);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.address-box p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.landmarks-list {
    list-style: none;
    margin-bottom: 30px;
}

.landmarks-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.landmarks-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

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

.landmarks-list li i {
    color: #126556;
    width: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
}

.nearby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(38, 106, 85, 0.4);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Contact Section */
.contact-section {
    background: var(--light-bg);
}

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

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    width: 60px;
    height: 60px;
    background: rgba(38, 106, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2) rotateY(360deg);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(38, 106, 85, 0.2);
    transform: translateY(-3px);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 80px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127,255,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.footer-logo h3 span {
    color: #7fffd4;
}

.footer-links h4, .footer-rera h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #7fffd4;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a:hover {
    color: #7fffd4;
    transform: translateX(10px);
    display: inline-block;
}

.footer-rera p {
    color: #ccc;
    margin-bottom: 12px;
}

.footer-rera a {
    color: #7fffd4;
    text-decoration: none;
    transition: var(--transition);
}

.footer-rera a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: var(--gradient);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(38, 106, 85, 0.4);
    z-index: 999;
    border: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(38, 106, 85, 0.5);
}

/* 3D Animations */
@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-10px) rotateX(2deg) rotateY(5deg); }
    50% { transform: translateY(-20px) rotateX(0deg) rotateY(0deg); }
    75% { transform: translateY(-10px) rotateX(-2deg) rotateY(-5deg); }
}

/* Parallax Background */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Glow Effects */
.glow {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(38, 106, 85, 0.4); }
    50% { box-shadow: 0 0 40px rgba(38, 106, 85, 0.8), 0 0 60px rgba(38, 106, 85, 0.4); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .club-content,
    .temple-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .kids-grid,
    .sports-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .plot-card {
        padding: 40px 20px;
    }
    
    .plot-size {
        font-size: 2.5rem;
    }
}
