/*
Theme Name: GalsPG
Theme URI: https://galspg.com
Author: GalsPG
Description: Girls-only PG near DLF Cyber City, Gurgaon. Clean, feminine, all-inclusive.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF9;
  --grey-50:     #F5F5F3;
  --grey-100:    #EBEBEA;
  --grey-200:    #D4D4D2;
  --grey-400:    #9B9B99;
  --grey-700:    #4A4A48;
  --black:       #1C1C1A;
  --rose:        #C17B84;
  --rose-light:  #FDF0F1;
  --rose-dark:   #9D5F67;
  --green-wa:    #25D366;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', -apple-system, sans-serif;
  --container:   1200px;
  --radius:      4px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; color: var(--black); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(44px, 6vw, 70px); font-weight: 300; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 400; }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 20px; font-weight: 500; }
p { color: var(--grey-700); line-height: 1.8; }

.label { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 17px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--radius); transition: all var(--transition); }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--rose); border: 1.5px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,0.35); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--grey-100); transition: box-shadow var(--transition); }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--black); letter-spacing: 0.5px; }
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-700); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-wa { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; background: var(--green-wa); color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; border-radius: var(--radius); transition: all var(--transition); }
.nav-wa:hover { background: #1ebe5d; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--black); transition: all var(--transition); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--grey-100); padding: 24px; z-index: 99; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--black); border-bottom: 1px solid var(--grey-100); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-whatsapp { margin-top: 20px; width: 100%; justify-content: center; }
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } body.admin-bar .mobile-menu { top: 118px; } }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--off-white); padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #fdf6f7 0%, #fafaf9 45%, #f5f0f2 100%); z-index: 0; }
.hero-bg::after { content: ''; position: absolute; top: -80px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(193,123,132,0.10) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; min-height: calc(100vh - 72px); padding: 64px 0; }
.hero-content { max-width: 560px; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 6px 14px 6px 8px; background: var(--rose-light); border-radius: 20px; }
.hero-label .dot { width: 8px; height: 8px; background: var(--rose); border-radius: 50%; }
.hero-label span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub { font-size: 18px; color: var(--grey-700); margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--black); line-height: 1; margin-bottom: 4px; }
.hero-stat span { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-400); }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-photo-main { height: 380px; background: linear-gradient(160deg, #e8d5d8 0%, #d4c0c4 100%); border-radius: 2px; overflow: hidden; }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-photo-sm { height: 180px; background: linear-gradient(160deg, #ede3e5 0%, #ddd0d3 100%); border-radius: 2px; overflow: hidden; }
.hero-photo-sm img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 20px; left: 20px; background: var(--white); border-radius: 4px; padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; }
.hero-badge-icon { width: 36px; height: 36px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 16px; }
.hero-badge-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.2; }
.hero-badge-text span { font-size: 11px; color: var(--grey-400); }

/* TRUST BAR */
.trust-bar { background: var(--black); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--grey-200); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.trust-item i { color: var(--rose); font-size: 14px; }
.trust-sep { width: 4px; height: 4px; background: var(--grey-700); border-radius: 50%; }

/* SECTIONS */
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-rose { background: var(--rose-light); }

/* INCLUSIONS */
.inclusions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inclusion-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); padding: 32px 28px; transition: all var(--transition); }
.inclusion-card:hover { border-color: var(--grey-200); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.inclusion-icon { width: 48px; height: 48px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 20px; margin-bottom: 20px; }
.inclusion-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.inclusion-card p { font-size: 15px; line-height: 1.7; }

/* ROOMS TEASER */
.rooms-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.room-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.room-card-photo { height: 240px; background: linear-gradient(160deg, #ede3e5 0%, #ddd0d3 100%); position: relative; overflow: hidden; }
.room-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-card-photo.triple { background: linear-gradient(160deg, #e3dde5 0%, #d0cad3 100%); }
.room-badge { position: absolute; top: 16px; left: 16px; background: var(--white); color: var(--rose); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.room-card-body { padding: 28px; }
.room-card-body h3 { font-size: 24px; margin-bottom: 8px; }
.room-card-body p { font-size: 15px; margin-bottom: 20px; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.room-tag { background: var(--grey-50); border: 1px solid var(--grey-100); padding: 4px 12px; border-radius: 20px; font-size: 12px; color: var(--grey-700); font-weight: 500; }

/* AMENITIES */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 16px; background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); transition: all var(--transition); }
.amenity-item:hover { border-color: var(--rose); }
.amenity-item i { font-size: 24px; color: var(--rose); margin-bottom: 12px; }
.amenity-item span { font-size: 13px; font-weight: 500; color: var(--grey-700); }

/* SECURITY */
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.security-list { margin-top: 24px; }
.security-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--grey-100); }
.security-item:last-child { border-bottom: none; }
.security-item-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); font-size: 16px; }
.security-item-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.security-item-text span { font-size: 14px; color: var(--grey-700); }
.security-visual { background: linear-gradient(160deg, #ede3e5 0%, #c8b0b5 100%); border-radius: 2px; height: 460px; overflow: hidden; }
.security-visual img { width: 100%; height: 100%; object-fit: cover; }

/* LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-map { border: 1px solid var(--grey-100); border-radius: var(--radius); height: 360px; overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-info { padding-top: 8px; }
.distance-list { margin-bottom: 32px; }
.distance-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--grey-100); }
.distance-item:last-child { border-bottom: none; }
.distance-item i { color: var(--rose); font-size: 16px; width: 20px; text-align: center; }
.distance-item span { font-size: 15px; color: var(--grey-700); }
.distance-item strong { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--black); }
.address-block { background: var(--grey-50); border: 1px solid var(--grey-100); border-left: 3px solid var(--rose); border-radius: var(--radius); padding: 20px 24px; }
.address-block p { font-size: 15px; color: var(--grey-700); line-height: 1.8; margin: 0; }

/* CTA BANNER */
.cta-banner { background: var(--black); padding: 72px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner h2 em { font-style: italic; color: var(--rose); }
.cta-banner p { color: var(--grey-400); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #111110; padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid #2a2a28; margin-bottom: 32px; }
.footer-brand p { color: var(--grey-400); font-size: 14px; max-width: 300px; line-height: 1.8; margin-top: 16px; }
.footer-logo { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--white); }
.footer-logo span { color: var(--rose); }
.footer-col h5 { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-400); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--grey-200); font-size: 14px; padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; color: var(--grey-400); font-size: 14px; line-height: 1.9; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #555; font-size: 13px; }
.footer-bottom a { color: var(--rose); }

/* PAGE HERO */
.page-hero { background: var(--off-white); padding: 120px 0 64px; text-align: center; border-bottom: 1px solid var(--grey-100); }
.page-hero .label { margin-bottom: 12px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ROOMS PAGE */
.rooms-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.room-full-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition); }
.room-full-card:hover { box-shadow: var(--shadow-md); }
.room-full-photo { height: 280px; background: linear-gradient(160deg, #ede3e5 0%, #ddd0d3 100%); position: relative; overflow: hidden; }
.room-full-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-full-photo.triple { background: linear-gradient(160deg, #e3dde5 0%, #d0cad3 100%); }
.room-full-photo.back { background: linear-gradient(160deg, #e8dde0 0%, #d8cdd0 100%); }
.room-full-body { padding: 32px; }
.room-full-body h3 { font-size: 26px; margin-bottom: 10px; }
.room-full-body > p { font-size: 16px; margin-bottom: 24px; }
.room-amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.room-amenity { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--grey-700); }
.room-amenity i { color: var(--rose); font-size: 13px; width: 16px; }
.all-included { background: var(--grey-50); border: 1px solid var(--grey-100); border-radius: var(--radius); padding: 40px; margin-top: 48px; }
.all-included h3 { font-size: 28px; margin-bottom: 8px; }
.all-included > p { margin-bottom: 28px; }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.included-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--grey-700); }
.included-item i { color: var(--rose); }

/* CONTACT PAGE */
.contact-actions { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; max-width: 720px; margin: 0 auto 56px; }
.contact-card { border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: all var(--transition); }
.contact-card.primary { background: var(--green-wa); color: var(--white); box-shadow: 0 8px 32px rgba(37,211,102,0.25); }
.contact-card.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.35); }
.contact-card.secondary { background: var(--white); border: 1px solid var(--grey-100); box-shadow: var(--shadow-sm); }
.contact-card.secondary:hover { border-color: var(--rose); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-label { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; opacity: 0.75; }
.contact-card.secondary .contact-card-label { color: var(--rose); opacity: 1; }
.contact-card-icon { font-size: 32px; line-height: 1; }
.contact-card.primary .contact-card-icon { color: rgba(255,255,255,0.9); }
.contact-card.secondary .contact-card-icon { color: var(--rose); }
.contact-card h3 { font-size: 26px; font-weight: 400; margin: 0; }
.contact-card.primary h3 { color: var(--white); }
.contact-card p { font-size: 15px; margin: 0; line-height: 1.6; }
.contact-card.primary p { color: rgba(255,255,255,0.85); }
.contact-card .card-number { font-family: var(--font-display); font-size: 28px; font-weight: 300; letter-spacing: 1px; margin-top: 4px; }
.contact-card.primary .card-number { color: var(--white); }
.contact-card.secondary .card-number { color: var(--black); }
.contact-card .card-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 12px 24px; border-radius: var(--radius); font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all var(--transition); }
.contact-card.primary .card-cta { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.contact-card.primary .card-cta:hover { background: rgba(255,255,255,0.3); }
.contact-card.secondary .card-cta { background: var(--rose); color: var(--white); }
.contact-card.secondary .card-cta:hover { background: var(--rose-dark); }
.location-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.location-detail h3 { font-size: 28px; margin-bottom: 16px; }
.location-detail address { font-style: normal; font-size: 16px; color: var(--grey-700); line-height: 2; margin-bottom: 24px; }
.location-detail address strong { display: block; color: var(--black); font-size: 15px; margin-bottom: 4px; }
.directions-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; background: var(--black); color: var(--white); border-radius: var(--radius); font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all var(--transition); }
.directions-btn:hover { background: var(--rose); transform: translateY(-1px); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-100); height: 380px; }
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .inclusions-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 48px 0 56px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .inclusions-grid, .rooms-teaser-grid, .rooms-full-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid, .location-grid, .location-split { grid-template-columns: 1fr; }
  .security-visual, .map-embed { height: 240px; }
  .contact-actions { grid-template-columns: 1fr; max-width: 100%; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .trust-inner { gap: 20px; }
  .trust-sep { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section-header { margin-bottom: 36px; }
}
